XMPP开发之代码篇

上一篇讲了XMPP的服务器和数据的配置,现在说一下代码。在写代码之前我们需要打开我们配置好的服务器,至于怎么打开可以看上一篇文章。

1、使用cocoapods导入pod 'XMPPFramework'

2、新建一个PCH文件,导入一些头文件,可以直接copy下面的。(如何配置pch文件路径不懂得可以问我)

#import <Availability.h>

#ifndef __IPHONE_3_0

#warning "This project uses features only available in iOS SDK 3.0 and later."

#endif

#ifdef __OBJC__

#import <UIKit/UIKit.h>

#import <Foundation/Foundation.h>

#import <CoreData/CoreData.h>

#import <AVFoundation/AVFoundation.h>

#import <AFNetworking/AFNetworking.h>

#import <XMPP.h>

#define HTTPSERVER @"你的服务器域名,也就是.local结尾的"

#define MY_DOMAIN @"127.0.0.1"

#endif

3、到AppDelegate里面注册XMPP

.h文件

//导入需要用到的头文件

#import <XMPPRoster.h>

#import <XMPPMessageArchivingCoreDataStorage.h>

#import <XMPPReconnect.h>

#import <XMPPMessageArchiving.h>

#import <XMPPRosterCoreDataStorage.h>

//设置XMPP流属性和coredata属性

@property(nonatomic,strong)XMPPStream*xmppStream;

@property(strong,nonatomic)NSManagedObjectContext*xmppManagedObjectContext;

@property(strong,nonatomic)NSManagedObjectContext*xmppRosterManagedObjectContext; 

.m文件

//设置全局变量

XMPPReconnect*xmppReconnect;//重新连接

XMPPMessageArchiving* xmppMessageArchiving;//消息保存

//把请求的数据添加到CoreDate中

XMPPMessageArchivingCoreDataStorage* messageStorage;

XMPPRoster*xmppRoster;

//好友列表保存

XMPPRosterCoreDataStorage*xmppRosterStorage;

- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {

// Override point for customization after application launch.

[self xmppInit];

return YES;

}

//初始化XMPP

-(void)xmppInit{

self.xmppStream= [[XMPPStream alloc] init];//创建xmppstream

xmppReconnect= [[XMPPReconnect alloc] init];//创建重写连接组件

[xmppReconnect activate:self.xmppStream];//使组件生效

//创建消息保存策略(规则,规定)

messageStorage= [XMPPMessage ArchivingCoreDataStorage sharedInstance];

//用消息保存策略创建消息保存组件

xmppMessageArchiving= [[XMPPMessage Archiving alloc]initWithMessageArchivingStorage:messageStorage];

//使组件生效

[xmppMessageArchiving activate:self.xmppStream];

//提取消息保存组件的coreData上下文

self.xmppManagedObjectContext=messageStorage.mainThreadManagedObjectContext;

xmppRosterStorage= [[XMPPRosterCoreDataStorage alloc]init];

xmppRoster= [[XMPPRoster alloc]initWithRosterStorage:xmppRosterStorage];

//自动获取用户列表

xmppRoster.autoFetchRoster=YES;

xmppRoster.autoAcceptKnownPresenceSubscriptionRequests=YES;

[xmppRoster activate:self.xmppStream];

self.xmppRosterManagedObjectContext=xmppRosterStorage.mainThreadManagedObjectContext;

}

4、布局登陆UI,这里就不给出代码了。

5、再登陆的控制器里面,添加代理XMPPStreamDelegate,然后初始化XMPP

//初始化XMPP

-(void)initXMPP{

UIApplication*application = [UIApplicationsharedApplication];

iddelegate = [applicationdelegate];

self.xmppStream= [delegatexmppStream];

[self.xmppStreamaddDelegate:selfdelegateQueue:dispatch_get_main_queue()];

}

6、验证登陆信息

//验证账号和密码

-(void)xmppConnect{

if(![_loginView.nameTF.text isEqualToString:@""] && ![_loginView.pwdTF.text isEqualToString:@""]) {

XMPPJID*jid = [XMPPJID jidWithUser:_loginView.nameTF.text domain:MY_DOMAINresource:@"iPhone"];

[self.xmppStreamsetMyJID:jid];

NSError*error =nil;

[self.xmppStream connectWithTimeout:4error:&error];

if(error) {

NSLog(@"链接出错:%@",[error localizedDescription]);

}

error =nil;

[self.xmppStream authenticateWithPassword:_loginView.pwdTF.texterror:&error];

if(error) {

NSLog(@"认证错误:%@",[error localizedDescription]);

}

}else{

NSLog(@"用户名、密码不能为空");

}

}

//验证成功后转跳到好友列表

-(void)xmppStreamDidAuthenticate:(XMPPStream*)sender{

NSLog(@"登录成功");

XMPPPresence*pre = [XMPPPresencepresence];

[self.xmppStreamsendElement:pre];

UIStoryboard*storyboard = [UIStoryboardstoryboardWithName:@"Main"bundle:nil];

FriendTableViewController*friendTVC = [storyboardinstantiateViewControllerWithIdentifier:@"FriendTableViewController"];

[self.navigationControllerpushViewController:friendTVCanimated:NO];

}

//登陆失败执行该方法

-(void)xmppStream:(XMPPStream*)sender didNotAuthenticate:(DDXMLElement*)error{

NSLog(@"认证失败");

}

7、好友列表的获取

//导入头文件,遵循代理

#import <XMPPUserCoreDataStorageObject.h>

#import <XMPPRosterCoreDataStorage.h>

#import <XMPPRoster.h>

@interface FriendTableViewController()<XMPPStreamDelegate,NSFetchedResultsControllerDelegate,XMPPRosterDelegate>

//确认代理获取好友数据

-(void)refrash{

UIApplication*application = [UIApplicationsharedApplication];

iddelegate = [applicationdelegate];

self.xmppRosterManagedObjectContext= [delegatexmppRosterManagedObjectContext];

NSFetchRequest*request = [[NSFetchRequestalloc]initWithEntityName:NSStringFromClass([XMPPUserCoreDataStorageObjectclass])];

NSSortDescriptor*sortD = [NSSortDescriptorsortDescriptorWithKey:@"jidStr"ascending:YES];

[requestsetSortDescriptors:@[sortD]];

//获取FRC

self.fetchedResultsController= [[NSFetchedResultsControlleralloc]initWithFetchRequest:requestmanagedObjectContext:self.xmppRosterManagedObjectContextsectionNameKeyPath:nilcacheName:nil];

self.fetchedResultsController.delegate=self;

NSError*error =nil;

if(![self.fetchedResultsControllerperformFetch:&error]) {

NSLog(@"%s%@",__FUNCTION__,[errorlocalizedDescription]);

}

[self.tableViewreloadData];

}

//获取组数

- (NSInteger)numberOfSectionsInTableView:(UITableView*)tableView {

NSArray*sections = [self.fetchedResultsControllersections];

returnsections.count;

}

//获取行数

- (NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section {

NSArray*sections = [self.fetchedResultsController sections];

id<NSFetchedResultsSectionInfo>sectionInfo = sections[section];

return[sectionInfonumberOfObjects];

}

//对cell进行赋值

- (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath {

FriendTableViewCell*cell = [tableViewdequeueReusableCellWithIdentifier:CellIDforIndexPath:indexPath];

XMPPUserCoreDataStorageObject*roster = [self.fetchedResultsControllerobjectAtIndexPath:indexPath];

cell.nameLabel.text= roster.nickname;

cell.lineView.backgroundColor= [UIColor lightGrayColor];

return cell;

}

//实现NSFetchedResultsControllerDelegate代理方法

//对NSFetchedResultsController进行跟踪,实时改变UITableView,跟beginUpdates一起使用。

- (void)controllerWillChangeContent:(NSFetchedResultsController*)controller {

[self.tableViewbeginUpdates];

}

  //通知代理的添加或者删除。当控制器改变sectionInfo时,fetchedObjects也会随之变化

- (void)controller:(NSFetchedResultsController*)controller didChangeSection:(id<NSFetchedResultsSectionInfo>)sectionInfo

atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type {

switch(type) {

caseNSFetchedResultsChangeInsert:

[self.tableViewinsertSections:[NSIndexSetindexSetWithIndex:sectionIndex]

withRowAnimation:UITableViewRowAnimationFade];

break;

caseNSFetchedResultsChangeDelete:

[self.tableViewdeleteSections:[NSIndexSetindexSetWithIndex:sectionIndex]

withRowAnimation:UITableViewRowAnimationFade];

break;

}

}

//获取改变的对象,并对indexPath所对应的值进行修改。

- (void)controller:(NSFetchedResultsController*)controller didChangeObject:(id)anObject

atIndexPath:(NSIndexPath*)indexPath forChangeType:(NSFetchedResultsChangeType)type

newIndexPath:(NSIndexPath*)newIndexPath {

UITableView*tableView =self.tableView;

switch(type) {

caseNSFetchedResultsChangeInsert:

[tableViewinsertRowsAtIndexPaths:[NSArrayarrayWithObject:newIndexPath]

withRowAnimation:UITableViewRowAnimationFade];

break;

caseNSFetchedResultsChangeDelete:

[tableViewdeleteRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath]

withRowAnimation:UITableViewRowAnimationFade];

break;

caseNSFetchedResultsChangeUpdate:

[tableViewreloadRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationFade];

break;

caseNSFetchedResultsChangeMove:

[tableViewdeleteRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath]

withRowAnimation:UITableViewRowAnimationFade];

[tableViewinsertRowsAtIndexPaths:[NSArrayarrayWithObject:newIndexPath]

withRowAnimation:UITableViewRowAnimationFade];

break;

}

}

//停止

- (void)controllerDidChangeContent:(NSFetchedResultsController*)controller {

[self.tableViewendUpdates];

}

好友获取基本就是这样了,接下来点击cell进入聊天界面的代码就不写了,实在太多了,因为都是自定义的。

这种即时通讯比较复杂,用的比较多的还是第三方写好的。不用自己搭服务器,聊天界面也是写好的。比如融云,环信等等。

如果有什么问题大家可以一起解决!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • 聊天控制器(ChatViewController)界面搭建 14.聊天界面-工具条排版 1)搭建界面 添加聊天控制...
    夜空已沉寂阅读 3,010评论 0 4
  • 概述在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,类似...
    liudhkk阅读 8,978评论 3 38
  • *面试心声:其实这些题本人都没怎么背,但是在上海 两周半 面了大约10家 收到差不多3个offer,总结起来就是把...
    Dove_iOS阅读 27,121评论 29 470
  • iOS开发系列--网络开发 概览 大部分应用程序都或多或少会牵扯到网络开发,例如说新浪微博、微信等,这些应用本身可...
    lichengjin阅读 3,637评论 2 7
  • 晚上熄灯时间到了,儿子躺床上滚来滚去,小声地告诉我说他睡不着,说想我了,让我和他一起挤在他小床上搂着他睡。...
    爱华王阅读 852评论 0 1