随笔分类 -  IOS 即时通讯(IM)

IOS XMPP总结
摘要://前言:仿weixin实现一个即时通讯的案例,支持版本7.0以上 "准备工作 创建项目时使用git" /* 显示隐藏文件,看到git的文件夹 defaults write com.apple.finder AppleShowAllFiles Yes && killall Finder defaults write com.apple.finder AppleShowAllFiles No &... 阅读全文

posted @ 2017-06-13 10:29 守望星空 阅读(868) 评论(0) 推荐(0)

IOS XMPP(即时通讯的框架)
摘要:封装好的XMPP工具(登录,注册,注销) WCXMPPTool.h #import <Foundation/Foundation.h> #import "Singleton.h" #import "XMPPFramework.h" typedef enum { XMPPResultTypeLogin 阅读全文

posted @ 2017-06-10 10:24 守望星空 阅读(309) 评论(0) 推荐(0)

IOS 通讯录 (访问,添加,修改)
摘要:如何访问用户的通讯录 在iOS中,有2个框架可以访问用户的通讯录 AddressBookUI.framework 提供了联系人列表界面、联系人详情界面、添加联系人界面等 一般用于选择联系人 AddressBook.framework 纯C语言的API,仅仅是获得联系人数据 没有提供UI界面展示,需要 阅读全文

posted @ 2017-05-19 14:54 守望星空 阅读(983) 评论(0) 推荐(0)

IOS GCDAsyncSocket
摘要:// // ViewController.m // 05.聊天室 // // Created by apple on 14/12/5. // Copyright (c) 2014年 heima. All rights reserved. // #import "ViewController.h" #import "GCDAsyncSocket.h" @interface ViewCo... 阅读全文

posted @ 2017-04-25 11:59 守望星空 阅读(223) 评论(0) 推荐(0)

IOS 即时通讯的框架 配置环境
摘要:一、了解XMPP 协议(标准)XMPP 即时通讯协议SGIP 短信网关协议 这手机发短信移动支付和网页支付0x23232[0,1] 0x23232 0x23232 0x23232只有协议,必须会有协议文档 二、环境配置 1.安装mysql2.修改mysql的帐户的密码》sqlite(移动平台) ,是 阅读全文

posted @ 2017-04-25 11:57 守望星空 阅读(280) 评论(0) 推荐(0)

IOS 连接服务器(socket)
摘要:// // ViewController.m // 05.聊天室 // // Created by apple on 14/12/5. // Copyright (c) heima. All rights reserved. // #import "ViewController.h" @interface ViewController (){ NSInputStream *... 阅读全文

posted @ 2017-04-25 11:48 守望星空 阅读(555) 评论(0) 推荐(0)

导航