1.创建一个新工程

2.导入XMPP框架

最新的XMPP框架下载地址:https://github.com/robbiehanson/XMPPFramework

将XMPP的几个文件夹拖进工程中,需要的文件如下:

然后把Sample_XMPPFramework.h改名为XMPPFramework.h

接下来导入两个依赖库:libresolv.dylib和libxml2.dylib,然后添加header search:

再添加一个pch文件

在pch文件中添加如下代码:

#ifdef __OBJC__
#import <UIKit/UIKit.h> #import "XMPPFramework.h"
#endif

再然后设置工程的pch文件

$SRCROOT后面是项目名/pch文件名。

做完以上步骤,项目就可以编译成功啦!

现在开始搭建项目的登录界面:

首先封装一个XMPP工具类:JKXMPPTool

.h文件

#import <Foundation/Foundation.h>

@interface JKXMPPTool : NSObject<XMPPStreamDelegate>

@property (nonatomic, strong) XMPPStream *xmppStream;
// 模块
@property (nonatomic, strong) XMPPAutoPing *xmppAutoPing;
@property (nonatomic, strong) XMPPReconnect *xmppReconnect; @property (nonatomic, assign) BOOL xmppNeedRegister;
@property (nonatomic, copy) NSString *myPassword; + (instancetype)sharedInstance;
- (void)loginWithJID:(XMPPJID *)JID andPassword:(NSString *)password;
- (void)registerWithJID:(XMPPJID *)JID andPassword:(NSString *)password; @end

.m文件

#import "JKXMPPTool.h"

@implementation JKXMPPTool

static JKXMPPTool *_instance;
+ (instancetype)sharedInstance
{
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_instance = [JKXMPPTool new];
}); return _instance;
} - (XMPPStream *)xmppStream
{
if (!_xmppStream) {
_xmppStream = [[XMPPStream alloc] init]; //socket 连接的时候 要知道host port 然后connect
[self.xmppStream setHostName:kXMPP_HOST];
[self.xmppStream setHostPort:kXMPP_PORT];
//为什么是addDelegate? 因为xmppFramework 大量使用了多播代理multicast-delegate ,代理一般是1对1的,但是这个多播代理是一对多得,而且可以在任意时候添加或者删除
[self.xmppStream addDelegate:self delegateQueue:dispatch_get_main_queue()]; }
return _xmppStream;
} - (void)loginWithJID:(XMPPJID *)JID andPassword:(NSString *)password
{
// 1.建立TCP连接
// 2.把我自己的jid与这个TCP连接绑定起来(即使匿名登录,依然得设置JID,只是我们可以设置一个任意的JID,例如<span style="font-family: Arial, Helvetica, sans-serif;">anonymous@<domain></span>)
// 3.认证(登录:验证jid与密码是否正确,加密方式 不可能以明文发送)--(出席:怎样告诉服务器我上线,以及我得上线状态
//这句话会在xmppStream以后发送XML的时候加上 <message from="JID">
[self.xmppStream setMyJID:JID];
self.myPassword = password;
self.xmppNeedRegister = NO;
[self.xmppStream connectWithTimeout:XMPPStreamTimeoutNone error:nil];
} //注册方法里没有调用auth方法
- (void)registerWithJID:(XMPPJID *)JID andPassword:(NSString *)password
{
[self.xmppStream setMyJID:JID];
self.myPassword = password;
self.xmppNeedRegister = YES;
[self.xmppStream connectWithTimeout:XMPPStreamTimeoutNone error:nil];
} - (void)goOnline
{
// 发送一个<presence/> 默认值avaliable 在线 是指服务器收到空的presence 会认为是这个
XMPPPresence *presence = [XMPPPresence presence]; //发送复杂一点的出席状态
//<presence type="avaliable">
// <status>我很忙</status>
// <show>xa</show>
// </presence>
[presence addChild:[DDXMLNode elementWithName:@"status" stringValue:@"我现在很忙"]];
[presence addChild:[DDXMLNode elementWithName:@"show" stringValue:@"xa"]]; [self.xmppStream sendElement:presence];
} #pragma mark ===== XMPPStream delegate =======
//socket 连接建立成功
- (void)xmppStream:(XMPPStream *)sender socketDidConnect:(GCDAsyncSocket *)socket
{
NSLog(@"%s",__func__);
} //这个是xml流初始化成功
- (void)xmppStreamDidConnect:(XMPPStream *)sender
{
NSLog(@"%s",__func__);
//匿名登录 会随机生成一个username和JID,这个是在服务器的内存中随机生成,不会写入服务器的数据表,例如生成的jid为<p class="p1"><span class="s1">1nv8l4khxg@im.joker.cn/1nv8l4khxg</span></p>
//为了防止客户端匿名登录,服务器有策略关闭匿名
// [self.xmppStream authenticateAnonymously:nil];
if (self.xmppNeedRegister) {
[self.xmppStream registerWithPassword:self.myPassword error:nil];
} else {
[self.xmppStream authenticateWithPassword:self.myPassword error:nil];
}
} - (void)xmppStreamDidDisconnect:(XMPPStream *)sender withError:(NSError *)error
{
NSLog(@"%s",__func__);
} //登录失败
- (void)xmppStream:(XMPPStream *)sender didNotAuthenticate:(DDXMLElement *)error
{
NSLog(@"%s",__func__);
} //登录成功
- (void)xmppStreamDidAuthenticate:(XMPPStream *)sender
{
NSLog(@"%s",__func__); [self goOnline]; [[NSNotificationCenter defaultCenter] postNotificationName:kLOGIN_SUCCESS object:nil];
} @end

然后是登录功能:

登录按钮的action如下:

#pragma mark - click event
/** 登录事件 */
- (IBAction)loginClick:(id)sender {
NSString *username = _usernameField.text;
NSString *password = _passwordField.text; NSString *message = nil;
if (username.length <= 0) {
message = @"用户名未填写";
} else if (password.length <= 0) {
message = @"密码未填写";
} if (message.length > 0) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil message:message delegate:nil cancelButtonTitle:@"我知道了" otherButtonTitles:nil];
[alertView show];
} else {
[[JKXMPPTool sharedInstance] loginWithJID:[XMPPJID jidWithUser:username domain:@"im.joker.cn" resource:@"iOS"] andPassword:password];
}
}

用通知返回登录成功的消息

- (void)loginSuccess
{
NSLog(@"loginSuccess"); [self performSegueWithIdentifier:@"loginSegue" sender:self];
}

再然后实现注册的功能:

- (IBAction)registAction:(id)sender {
NSString *username = _usernameField.text;
NSString *password = _passwordField.text;
NSString *confirm = _confirmField.text; NSString *message = nil;
if (username.length <= 0) {
message = @"用户名未填写";
} else if (password.length <= 0) {
message = @"密码未填写";
} else if (confirm.length <= 0) {
message = @"确认密码未填写";
} if (message.length > 0) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil message:message delegate:nil cancelButtonTitle:@"我知道了" otherButtonTitles:nil];
[alertView show];
} else if (![password isEqualToString:confirm]) {
message = @"密码与确认密码不一致";
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil message:message delegate:nil cancelButtonTitle:@"我知道了" otherButtonTitles:nil];
[alertView show];
} else {
[[JKXMPPTool sharedInstance] registerWithJID:[XMPPJID jidWithUser:username domain:@"im.joker.cn" resource:@"iOS"] andPassword:password];
}
}

因为注册时,不需要进行认证,注册会直接返回BOOL结果,所以改进连接代理方法:

//这个是xml流初始化成功
- (void)xmppStreamDidConnect:(XMPPStream *)sender
{
NSLog(@"%s",__func__);
if (self.xmppNeedRegister) {
BOOL result = [self.xmppStream registerWithPassword:self.myPassword error:nil];
NSNumber *number = [NSNumber numberWithBool:result]; [[NSNotificationCenter defaultCenter] postNotificationName:kREGIST_RESULT object:number]; } else {
[self.xmppStream authenticateWithPassword:self.myPassword error:nil];
}
}

下载地址:点击下载

github地址:https://github.com/Joker-King/ChatDemo

XMPP系列(二)----用户注册和用户登录功能的更多相关文章

  1. 使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(二)——使用蓝图功能进行模块化

    使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(一)——创建应用 使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(二)——使用蓝图功能进行模块化 使用 Flask 框架写用 ...

  2. Struts2整合Hibernate3实现用户登录功能

    所用技术:struts2 ,hibernate,jsp,mysql 本DEMO仅仅实现用户登录功能,采用MVC思想,自己也觉得相对是比较简单,比较容易理解数据流向的一个例子,通过整合这个过程,能够清晰 ...

  3. JavaWeb学习记录(六)——用户登录功能

    使用JDBC.spring框架.servlet实现一个简单的用户登录功能. 一.mySql数据库 SET FOREIGN_KEY_CHECKS=0; -- ---------------------- ...

  4. 使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(五)——实现注册功能

    使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(一)——创建应用 使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(二)——使用蓝图功能进行模块化 使用 Flask 框架写用 ...

  5. 使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(四)——对 run.py 的调整

    使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(一)——创建应用 使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(二)——使用蓝图功能进行模块化 使用 Flask 框架写用 ...

  6. 使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(一)——创建应用

    使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(一)——创建应用 使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(二)——使用蓝图功能进行模块化 使用 Flask 框架写用 ...

  7. 使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(三)——使用Flask-Login库实现登录功能

    使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(一)——创建应用 使用 Flask 框架写用户登录功能的Demo时碰到的各种坑(二)——使用蓝图功能进行模块化 使用 Flask 框架写用 ...

  8. .net reactor 学习系列(二)---.net reactor界面各功能说明

    原文:.net reactor 学习系列(二)---.net reactor界面各功能说明         安装了.net reactor之后,可以在安装目录下找到帮助文档REACTOR_HELP.c ...

  9. 实现Web上的用户登录功能

    关于如何实现web上的自动登录功能 文章来源http://coolshell.cn/articles/5353.html Web上的用户登录功能应该是最基本的功能了,可是在我看过一些站点的用户登录功能 ...

随机推荐

  1. 漏洞挖局利器-Fuzz技术介绍

    模糊测试的定义 模糊测试定义为"通过向应用提供非预期的输入并监控输出中的异常来发现软件中的故障(faults)的方法". 典型而言,模糊测试利用自动化或是半自动化的方法重复地向应用 ...

  2. Effective C++ ——资源管理

    条款13:以对象来管理资源 在C++中我们经常会涉及到资源的申请与申请,一般都是由关键字new 和 delete来操作的,两者都是成对存在的,缺一不可,否则会出现意想不到的问题,例如: class I ...

  3. Effective C++ ——构造/析构/赋值运算符

    条款五:了解C++默认编写并调用那些函数 是否存在空的类? 假设定义类为class Empty{}:当C++编译器处理过后会变成如下的形式: class Empty{ Empty(){} ~Empty ...

  4. antlr v4 使用指南连载3——g4文件概览

    g4文件概览        在深入介绍之前,有必要先给大家了解一下g4文件的结构,以便对如何编写语法规则文件有个全局的认识,我想这是大有禆益的.因为这样我们就可以很清晰地知道需要的东西写在哪里,或者哪 ...

  5. UNIX网络编程——客户/服务器程序设计示范(五)

        TCP预先派生子进程服务器程序,传递描述符 对预先派生子进程服务器程序的最后一个修改版本是只让父进程调用accept,然后把所接受的已连接套接字"传递"给某个子进程.这么做 ...

  6. Mybatis简单入门

    MyBatis是一个支持普通SQL查询,存储过程和高级映射的优秀持久层框架.MyBatis消除了几乎所有的JDBC代码和参数的手工设置以及对结果集的检索封装.MyBatis可以使用简单的XML或注解用 ...

  7. MVPHelper更新日志 --- 新增常规分包模式

    MVPHelper是一款可以自动生成MVP接口以及实现类的android studio插件,彻底解放双手! MVPHelper更新版本啦. 由于之前只支持contract模式,不是很符合大众口味 所以 ...

  8. 通过freemarker生成一个word,解决生成的word用wps打开有问题的问题,解决出word时中文文件名乱码问题,解决打开出word时打开的word出现问题的问题,出图片,解决动态列表

     通过freemarker制作word比较简单 步骤:制作word模板.制作方式是:将模板word保存成为xml----在xml的word模板中添加相应的标记----将xml的word文件的后缀名 ...

  9. 分布式进阶(二)Ubuntu 14.04下安装Dockr图文教程(一)

    当前,完全硬件虚拟化技术(KVM.Xen.Hyper-V 等)能在一个物理主机上很好地运行多个互相独立的操作系统,但这也带来一些问题:性能不佳,资源浪费,系统反应迟缓等.有时候对用户来说,完全的硬件虚 ...

  10. 谈谈Ext JS的组件——布局的使用方法续一

    盒子布局 盒子布局主要作用是以水平(Ext.layout.container.HBox)或垂直方式(Ext.layout.container.VBox)来划分容器区域.这也是比较常有的布局方式. 使用 ...