会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小C酱
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
下一页
2016年10月12日
iOS app 企业内部发布及HTTPS服务器配置
摘要: 转自: http://www.cnblogs.com/cocoajin/p/4082488.html iOS企业内部发布及HTTPS服务器配置 一:所需的条件 1. 苹果开发者证书,企业版 299$ 版本 2. ssl 证书,即https使用的服务器证书 3. web服务器,支持https 4. 一
阅读全文
posted @ 2016-10-12 14:02 小C酱
阅读(10982)
评论(1)
推荐(0)
2016年9月28日
iOS runtime 初步学习
摘要: 注: 在Xocde5之后, 使用运行时方法需要进行2步设置1. 在Build Setting中搜索'msg', 设置'Strict Checking' 为 NO2. 使用需要导入头文件 #import <objc/message.h>// 一. 消息发送objc_msgSend(类对象 / 实例对象
阅读全文
posted @ 2016-09-28 10:41 小C酱
阅读(141)
评论(0)
推荐(0)
2016年9月27日
iOS AFNetworking中cookie重定向
摘要: // 1. 取出需要同步的url (登录请求中返回的重定向地址)BESTHttpItem *httpItem = [BESTHttpHelper sharedHelper].curHttpItem;NSString *url = [NSString stringWithFormat:@"%@/#/l
阅读全文
posted @ 2016-09-27 11:15 小C酱
阅读(1057)
评论(0)
推荐(0)
2016年9月18日
iOS 如何适配iOS10
摘要: 转自: http://www.cnblogs.com/jukaiit/p/5881062.html 2016年9月7日,苹果发布iOS 10。2016年9月14日,全新的操作系统iOS 10将正式上线。 作为开发者,如何适配iOS10呢? 1.Notification(通知) 自从Notificat
阅读全文
posted @ 2016-09-18 17:32 小C酱
阅读(6293)
评论(0)
推荐(2)
2016年8月22日
iOS MD5加密字符串
摘要: 参考:http://stackoverflow.com/questions/1524604/md5-algorithm-in-objective-c 在线测试MD5:http://www.cmd5.com/ 需求: 将字符串进行MD5加密,返回加密后的字符串。 #import <CommonCryp
阅读全文
posted @ 2016-08-22 14:28 小C酱
阅读(249)
评论(0)
推荐(0)
2016年8月11日
iOS AFNetworking中cookie的读取与设置
摘要: 参考: http://blog.csdn.net/zhaoxy_thu/article/details/20532879 实际上AFNetworking中并没有专门针对cookie封装的代码,但是由于它底层使用的是NSURLRequest,所以可以通过NSHTTPCookieStorage来操作co
阅读全文
posted @ 2016-08-11 14:52 小C酱
阅读(1472)
评论(0)
推荐(0)
2016年8月9日
iOS FMDB的使用
摘要: 简介: SQLite (http://www.sqlite.org/docs.html) 是一个轻量级的关系数据库。iOS SDK 很早就支持了 SQLite,在使用时,只需要加入 libsqlite3.dylib 依赖以及引入 sqlite3.h 头文件即可。但是,原生的 SQLite API 在
阅读全文
posted @ 2016-08-09 14:40 小C酱
阅读(213)
评论(0)
推荐(0)
2016年8月3日
iOS 推送通知处理
摘要: //这是程序杀死后再通过点击通知进入时调用的方法 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { if (launchOpti
阅读全文
posted @ 2016-08-03 16:06 小C酱
阅读(204)
评论(0)
推荐(0)
iOS 二维数组排序小算法
摘要: NSArray *tmp = @[@[@(1), @(2), @(3), @(4), @(5)], @[@(6), @(7), @(8), @(9), @(10)], @[@(11), @(12), @(13), @(14), @(15)], @[@(16), @(17), @(18), @(19)
阅读全文
posted @ 2016-08-03 11:33 小C酱
阅读(821)
评论(0)
推荐(0)
2016年8月2日
iOS 键盘
摘要: http://blog.sina.com.cn/s/blog_7018d3820101djut.html 一、键盘风格 UIKit框架支持8种风格键盘。 typedef enum { UIKeyboardTypeDefault, // 默认键盘:支持所有字符 UIKeyboardTypeASCIIC
阅读全文
posted @ 2016-08-02 18:44 小C酱
阅读(214)
评论(0)
推荐(0)
上一页
1
2
3
4
5
下一页
公告