上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 自定义 @interface KKTabBar : UITabBar NS_CLASS_AVAILABLE_IOS(2_0) @interface UITabBar : UIView UITabBar 继承自 UIView所以可以在 UITabBar 上添加view啦。 - (instancetyp 阅读全文
posted @ 2016-03-02 20:56 人生路1/5 阅读(123) 评论(0) 推荐(0) 编辑
摘要: NSURL *url = [NSURL URLWithString:url1]; NSString *xmlString = [[NSString alloc] initWithContentsOfURL:url encoding:NSUTF8StringEncoding error:NULL]; 阅读全文
posted @ 2016-03-02 20:36 人生路1/5 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 导入 MessageUI.framework #import <MessageUI/MessageUI.h> 实现代理 MFMessageComposeViewControllerDelegate 1 - (void)sendMessage 2 { 3 //发短信 不能设置短信内容 4 //[[UI 阅读全文
posted @ 2016-03-02 20:29 人生路1/5 阅读(262) 评论(0) 推荐(0) 编辑
摘要: fmdb相关 导入 #import "FMDB.h" 和 首先,将Collection.sqlite文件,拷贝到docment,文件中 1 // 拷贝文件 2 - (void)copyFile{ 3 4 // 获取文件夹的路径 5 NSString *doc = [NSSearchPathForDi 阅读全文
posted @ 2016-03-02 20:20 人生路1/5 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 报错:(<UIStoryboard: 0x7fa9c3d72360>) doesn't contain a view controller with identifier 'UIViewController-76T-IN-z 原因:未知 解决方法:cmd+shift+k 从Storyboard中加载 阅读全文
posted @ 2016-03-02 16:42 人生路1/5 阅读(550) 评论(0) 推荐(0) 编辑
摘要: 1.获取私有成员变量 1 unsigned int num = 0; 2 Ivar *ivars = class_copyIvarList([UITextField class], &num); 3 for (int i=0; i<num; i++) { 4 Ivar ivar = *(ivars+ 阅读全文
posted @ 2016-02-25 17:43 人生路1/5 阅读(116) 评论(0) 推荐(0) 编辑
摘要: readme 1 #import "ViewController.h" 2 #import "SVProgressHUD.h" 3 4 @interface ViewController () 5 - (IBAction)seitchClick:(UISwitch *)sender; 6 7 @en 阅读全文
posted @ 2016-02-22 10:45 人生路1/5 阅读(251) 评论(0) 推荐(0) 编辑
摘要: // 让按钮内部的所有内容左对齐 button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft; // 让按钮的内容往左边偏移10 button.contentEdgeInsets = UIEdgeInsets 阅读全文
posted @ 2016-02-21 18:57 人生路1/5 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 1. 添加远程仓库(这里并不能把所有的代码,下载到本地。你可以查看,远程仓库上的代码) 2.添加,远程代码仓库 之后 3.将仓库上的代码,下载到本地 完成之后,本地文件夹,就会有,仓库上的代码了,就是这样了 4.创建一个新的xcode工程 5.如果这样 如果更新,会有问题出现。如下, 之后会出现这个 阅读全文
posted @ 2016-02-19 19:25 人生路1/5 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1 #import <UIKit/UIKit.h> 2 3 @interface UIBarButtonItem (Extension) 4 + (UIBarButtonItem *)itemWithImageName:(NSString *)imageName highImageName:(NSS 阅读全文
posted @ 2016-02-18 10:59 人生路1/5 阅读(225) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页