摘要:
self.navigationController.navigationBar.barTintColor = RGB(55, 46, 41); 阅读全文
摘要:
转自 http://blog.csdn.net/zhibudefeng/article/details/7795946//file文件操作NSFileManager常见的NSFileManager文件的方法:-(BOOL)contentsAtPath:path 从文件中读取数据-(BO... 阅读全文
摘要:
一,设置亮度[[UIScreen mainScreen] setBrightness:0.5];//0.0~1.0二,设置声音1,添加 MediaPlayer.framework 框架2,在需要的文件中导入头文件,#import 3,[[MPMusicPlayerController applica... 阅读全文
摘要:
能够滚动的控件都不会响应touchesBegin,touchesEnd等方法,这就需要对这个类进行封装以UITextView为例1,创建CustomTextView类,继承与UITextView2,在CustomTextView.m文件中重写touchesBegin,touchesEnd等方法3,代... 阅读全文
摘要:
(一)当创建某一个UIViewController B,并push到ViewController B时,B执行方方法的顺序如下:1>viewDidLoad2>initWithNibName3>init4>viewWillAppear5>viewWillLayoutSubviews6>viewDidL... 阅读全文
摘要:
一,libxml/HTMLparser.h file not find 第一种方法: 点击左边项目的根目录,再点击右边的Build Settings,手工输入文字:“Header search paths”,然后单击(或双击,点击弹出面板下面的“+”号进行添加)“Header search path 阅读全文
摘要:
现在说明一下,command相当于ms键盘的win键,option相当于alt,键值一样,系统偏好设置里面可以更改。 xcode 相关: 关于xcode 可设 偏好设置 command+, 清空缓存 可设 隐藏xcode command+h 隐藏其它 command+option+h 显示全部 可设 退出xcode command+q 文件相关: 新建项目 command+shift+n 新建文件 command+n 新建空文件 command+control+n 打开 command+o 在新窗口中打开 command+option+o 快速打开 command+shift+d / comm 阅读全文
摘要:
macbook air快捷键应用Command +空格键=切换输入法Command + Control + F = 全屏(Command + Shift + F Chrome全屏Command + A 全选Command + F 查找Command + X剪切(只针对内容进行剪切,对文件无效)Command + C复制Command +D在当前目录中复制一份所选中项Command + V粘贴Command + Z 撤销Command + Shift + Z重做(Command+Y)Command + I显示简介Command + O打开Command + S 保存Command + Shift 阅读全文
摘要:
1,在.plist文件中添加一个键值对:设置View controller-based status bar appearance的值为NO2,在方法中- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOpt... 阅读全文
摘要:
一,常用第三方库要加的framework1,SQLite3数据库:FMDatabase需要添加:libsqlite3.dylib2,网络请求:ASIHTTPRequest需要添加:CFNetwork.framework, SystemConfiguration.framework, MobileCo... 阅读全文