https://github.com/YouXianMing
上一页 1 ··· 81 82 83 84 85
摘要: Objective-C RegEx Categorieshttps://github.com/bendytree/Objective-C-RegEx-Categories使用说明:将 RegExCategories.h RegExCategories.m 文件拖入工程中引入头文件即可.========================================================================== //匹配电话号码(手机号以13, 15,18开头,八个 \d 数字字符) BOOL isMatch = [@"15910514636" isMa 阅读全文
posted @ 2014-03-10 13:18 YouXianMing 阅读(1422) 评论(0) 推荐(0) 编辑
摘要: 找到 TARGETS 中的 Build Setting ,下拉找到 Packaging ,修改 Product Name 即可. 阅读全文
posted @ 2014-03-07 11:41 YouXianMing 阅读(710) 评论(0) 推荐(0) 编辑
摘要: SVPullToRefresh开源库地址https://github.com/samvermette/SVPullToRefresh将整个文件夹SVPullToRefresh拖入工程中并引入头文件即可注意编译时有一个方法快被弃用了- (CGSize)sizeWithFont:(UIFont *)font constrainedToSize:(CGSize)size lineBreakMode:(NSLineBreakMode)lineBreakMode工程源码RootViewController.h1 // Copyright (c) 2014年 YouXian. All rights re. 阅读全文
posted @ 2014-03-06 13:30 YouXianMing 阅读(2633) 评论(1) 推荐(0) 编辑
摘要: UIRefreshControl 为 UITableViewController 中的一个属性,从以下可以看出, IOS6.0 以上才支持.@property (nonatomic,retain) UIRefreshControl *refreshControl NS_AVAILABLE_IOS(6_0);RootViewController.h// Copyright (c) 2014年 YouXian. All rights reserved.//#import @interface RootViewController : UITableViewController@endRootVi. 阅读全文
posted @ 2014-03-06 11:28 YouXianMing 阅读(1262) 评论(0) 推荐(0) 编辑
摘要: 1.STHTTPRequest框架地址https://github.com/nst/STHTTPRequest将 STHTTPRequest .h STHTTPRequest.m 文件拖入工程中引入头文件即可2.Ono框架(解析XML用)https://github.com/mattt/Ono将 Ono 文件夹拖入到工程中引入头文件,链接到 libxml2.dylib ,在 Header Search Path 中 添加 /usr/include/libxml2 ------------------------------------------------------------------ 阅读全文
posted @ 2014-03-05 12:29 YouXianMing 阅读(1216) 评论(0) 推荐(0) 编辑
摘要: 引用地址http://www.zhihu.com/question/22599526/answer/21938878网上搜了下IOS手机标志的种类,直接引用过来。UDID[[UIDevice currentDevice] uniqueIdentfier]iOS官方最早提供的UDID方案,根据某一公式,使用设备序列号、网卡地址等信息作为参数计算而来,iOS6之后该计算公式发生了改变。该方法返回的结果在所有应用中都相同,并且卸载应用、刷机、还原设备均不会发生改变,是最为准确的设备唯一标示符。iOS5之后,该方法被标记为废弃!最终,在2013年5月1号之后,AppStore禁止任何使用该方法的应用上 阅读全文
posted @ 2014-02-28 08:55 YouXianMing 阅读(1462) 评论(2) 推荐(0) 编辑
摘要: 参考资料地址https://github.com/Shmoopi/iOS-System-Services 百度云盘下载地址http://pan.baidu.com/s/1c05ot1mThis is a singleton class to gather all available informat... 阅读全文
posted @ 2014-02-27 10:44 YouXianMing 阅读(1770) 评论(2) 推荐(0) 编辑
摘要: 尊重原作者收集的资料,复制粘贴只为了避免作者文章出处哪天抽风了访问不了了导致资料消失。原文地址 http://bbs.neworigin.net/forum.php?mod=viewthread&tid=488在开发网络相关的应用,比如微博应用时,就必然需要使用到HTTP请求来发送或者接收数据。最主... 阅读全文
posted @ 2014-02-26 16:14 YouXianMing 阅读(949) 评论(0) 推荐(2) 编辑
摘要: 较老版本的 AFNetworking 下载链接 http://pan.baidu.com/s/14Cxga 将压缩包中的文件夹拖入xcode工程项目中并引入如下的框架 简单的 JOSN 解析例子 static NSString *serverAddress = @"http://m.weather. 阅读全文
posted @ 2014-02-26 12:55 YouXianMing 阅读(673) 评论(0) 推荐(1) 编辑
上一页 1 ··· 81 82 83 84 85