ios
文章平均质量分 67
19抹茶绿
这个作者很懒,什么都没留下…
展开
-
ASIHTTPRequest:异步请求之后 用代理传值问题 代理 块
ASIHTTPRequest:异步请求的使用大家可以参考下面几篇博文http://www.th7.cn/Program/IOS/2012/07/15/84251.shtmlhttp://itjoy.org/?p=377//主要就是使用代理和block 但是自己在使用的时候2 个viewControll 内存上有点问题 总是说bad access 然后代理的位置的内存就是空的原创 2014-04-30 10:08:04 · 966 阅读 · 0 评论 -
[译]Objective-C Runtime Programming Guide -Messaging (二)
MessagingThis chapter describes how the message expressions are converted into objc_msgSend function calls, and how you can refer to methods by name. It then explains how you can take advantage翻译 2014-11-21 17:09:20 · 838 阅读 · 0 评论 -
[译]Objective-C Runtime Programming Guide -Dynamic Method Resolution ( 三)
Dynamic Method ResolutionThis chapter describes how you can provide an implementation of a method dynamically.动态方法解析翻译 2014-11-24 10:36:02 · 654 阅读 · 0 评论 -
Simplify iOS Models With Mantle – An Intro
转载自:Mantle is a framework that makes using iOS models ridiculously easy. It helps manage all the boilerplate associated with models including serialization, deserialization, and equality.Let转载 2014-10-21 10:16:42 · 666 阅读 · 0 评论 -
[译]Objective-C Runtime Programming Guide - Interacting with the Runtime (一)
这篇翻译只是自己的翻译 2014-11-20 16:39:53 · 735 阅读 · 0 评论 -
ios emoji 表情在 跨平台之间的发送 (二)、coding
ios7 下emoji表情 与pc andorid端 互通解决方案简单实现(使用数据库查表)。原创 2014-10-10 15:04:54 · 4811 阅读 · 4 评论 -
ios8 layout SizeClass 自动布局初索
按照cocoachina的这篇文章做的一个d原创 2014-10-29 16:08:40 · 796 阅读 · 0 评论 -
ios emoji 表情在 跨平台之间的发送 (一)、知识准备
首先需要知道yi'x原创 2014-10-10 09:55:41 · 1842 阅读 · 0 评论 -
iOS oc des加密 转自网络。
这里使用框架提供的des加解密库:首先引入头文件 #import 主要的加解密函数如下:/*字符串加密 *参数 *plainText : 加密明文 *key : 密钥 64位 */+ (NSString *) encryptUseDES:(NSString *)plainText key:(NSString *)key{ NSStr转载 2014-09-16 10:11:54 · 1712 阅读 · 0 评论 -
NSPredicate 小结 &正则表达式
NSString *format=[NSStringstringWithFormat:@"SELF.nickName LIKE[cd] '*%@*'",searchText]; NSPredicate *perdicate=[NSPredicatepredicateWithFormat:format]; tableViewShowArray=[ta原创 2014-08-15 21:44:57 · 956 阅读 · 0 评论 -
保证tableview Checkmark的选中唯一性
@property (nonatomic, strong) NSIndexPath *selectedIndexPath;- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static NSString *C原创 2014-08-15 21:42:06 · 581 阅读 · 0 评论 -
AsyncSocket 浅析 简单使用
更多的是自己路程的记录,有错误欢迎指正参考博客文章http://www.cnblogs.com/bucengyongyou/archive/2012/10/28/2743523.html原创 2014-05-07 15:35:48 · 508 阅读 · 0 评论 -
ios emoji 表情在 跨平台之间(android)的发送 (不需要数据库) (三) 新思路
前言:项目需要跟android 互通表情,以及ios8 emoji表情的大量增加。不再使用数据库存图片的形式。外加不再有pc端的参与,所以emoji表情转换变得更加从容。继承了之前两篇的博文中的有效代码,经过一些总结之后与大家分享。知识准备:参考我这里的blog里面我整理了一些关于编码转换的知识。编码思路:这个是我之前画的图,思路还是一样 转换成[e]U原创 2015-04-09 11:25:47 · 1770 阅读 · 1 评论