码迷,mamicode.com
首页 > 其他好文 > 详细

sdf

时间:2015-03-30 13:32:29      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

- ( void )connect {
     if  (self.xmppStream == nil) {
         self.xmppStream = [[XMPPStream alloc] init];
         [self.xmppStream addDelegate:self delegateQueue:dispatch_get_main_queue()];
     }
     if  (![self.xmppStream isConnected]) {
         NSString *username = [[NSUserDefaults standardUserDefaults] objectForKey:@ "username" ];
         XMPPJID *jid = [XMPPJID jidWithUser:username domain:@ "lizhen"  resource:@ "Ework" ];
         [self.xmppStream setMyJID:jid];
         [self.xmppStream setHostName:@ "10.4.125.113" ];
         NSError *error = nil;
         if  (![self.xmppStream connect:&error]) {
             NSLog(@ "Connect Error: %@" , [[error userInfo] description]);
         }
     }
}


sdf

标签:

原文地址:http://my.oschina.net/stane/blog/393483

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!