iOS网络IOS收藏

iOS XMPP——自动连接

2015-11-12  本文已影响571人  iOS_成才录

自动连接的作用:

实现自动连接的步骤:

// 自动连接模块
#import "XMPPReconnect.h"
@interface JPAppDelegate()<XMPPStreamDelegate>{
       
  // 自动连接模块
    XMPPReconnect *_reconnect;
    
    XMPPResultBlock _resultBlock;
}

//释放资源
- (void)teardownXmppstream;

#pragma mark 初始化xmppStrem对象
-(void)setupXmppStream{
    
    NSAssert(_xmppStream == nil, @"xmppStream对象初始化多次");
    
    //1. 创建xmppStrem对象
    _xmppStream = [[XMPPStream alloc] init];
    //2. 添加代表
    [_xmppStream addDelegate:self delegateQueue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)];

/**                加入下列代码         **/
    
    //3. 添加自动连接模块
    _reconnect = [[XMPPReconnect alloc] init];
    //激活
    [_reconnect activate:_xmppStream];
}
#pragma mark 释放资源
-(void)teardownXmppstream{
    //移动代理
    [_xmppStream removeDelegate:self];
    
    //停止模块
    //停止自动连接模块
    [_reconnect deactivate];
  
    //断开连接
    [_xmppStream disconnect];
    
    //清空资源为nil
    _xmppStream = nil;
    _reconnect = nil;
}
上一篇下一篇

猜你喜欢

热点阅读