上一页 1 ··· 85 86 87 88 89 90 91 92 93 ··· 97 下一页

2015年10月13日

ios 报错记录

摘要: 1. 运行xcode 报错:unterminated conditional directive #ifdef 缺少对应的#endif 在结尾加上就好了 2.iOS添加非(c,c++)文件引发的"NSObjCRuntime.h"错误 引起原因是项目中的使用了c++的底层库 错在Prefix.pch中 阅读全文

posted @ 2015-10-13 18:51 🌞Bob 阅读(243) 评论(0) 推荐(0) 编辑

改变navigationbar 标题颜色

摘要: navigationController.navigationBar.titleTextAttributes=@{NSForegroundColorAttributeName:[UIColoryellowColor]}; 阅读全文

posted @ 2015-10-13 18:50 🌞Bob 阅读(116) 评论(0) 推荐(0) 编辑

UITextField监听文字输入事件

摘要: [textField addTarget:self action:@selector(textFieldDidChange:)forControlEvents:UIControlEventEditingChanged];-(void)textFieldDidChange:(UITextField *... 阅读全文

posted @ 2015-10-13 18:47 🌞Bob 阅读(208) 评论(0) 推荐(0) 编辑

storyboard,xib

摘要: 1. 从xib的viewcontroll中启动storyboard 或者 从一个storyboard切换到另一个storyboard: – (IBAction)openStoryboard:(id)sender {UIStoryboard *secondStoryboard = [UIStorybo 阅读全文

posted @ 2015-10-13 18:35 🌞Bob 阅读(167) 评论(0) 推荐(0) 编辑

Xcode6中autolayout和sizeclass的使用

摘要: 一、关于自动布局(Autolayout)在Xcode中,自动布局看似是一个很复杂的系统,在真正使用它之前,我也是这么认为的,不过事实并非如此。我们知道,一款iOS应用,其主要UI组件是由一个个相对独立的可视单元构成,这些可视单元有的主要负责向用户输出有用的信息,有些则负责信息的输入(交互),交互的过... 阅读全文

posted @ 2015-10-13 18:33 🌞Bob 阅读(136) 评论(0) 推荐(0) 编辑

进入 App Store 打分

摘要: 很多用户用了好软件后忘记或嫌麻烦而不去 App Store 进行打分评星,为此开发者可以在应用中加入打分按钮,点击后直接跳转到 App Store 的评分界面。 App Store 上评论的链接地址是itms-apps://ax.itunes.apple.com/WebObjects/MZStor... 阅读全文

posted @ 2015-10-13 17:49 🌞Bob 阅读(205) 评论(0) 推荐(0) 编辑

动态设置uitableview高度,参考

摘要: - (CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{//UITableViewCell *cell = [tableView cellForRowAtIndexPat... 阅读全文

posted @ 2015-10-13 17:45 🌞Bob 阅读(183) 评论(0) 推荐(0) 编辑

图片在内存中的占用的空间大小

摘要: 这个话题有点底层了 由于在开发当中尤其是在嵌入式设备开发当中,我们对内容使用要求很高,如Android的设备在开发过程中,我们在加载图片资源的时候,如果图片资源使用不合理经常会出现内存溢出的问题(安卓里面叫做 om(out memory) ios里面叫 内存过大),这个问题很是让人头疼。所以我们如果 阅读全文

posted @ 2015-10-13 17:41 🌞Bob 阅读(1607) 评论(0) 推荐(0) 编辑

ios 8和iOS 9 适用的uidatepicker

摘要: UIAlertController*alertController = [UIAlertControlleralertControllerWithTitle:@"\n\n\n\n\n\n\n\n\n\n\n"message:nilpreferredStyle:UIAlertControllerSty... 阅读全文

posted @ 2015-10-13 17:37 🌞Bob 阅读(211) 评论(0) 推荐(0) 编辑

iOS的view翻转动画实现--代码老,供参考

摘要: 新建一个view-based模板工程,在ViewController文件中添加下面的代码,即可实现翻转效果;- (void)viewDidLoad {[superviewDidLoad];//需要翻转的视图UIView*parentView = [[UIViewalloc]initWithFrame... 阅读全文

posted @ 2015-10-13 17:31 🌞Bob 阅读(508) 评论(0) 推荐(0) 编辑

上一页 1 ··· 85 86 87 88 89 90 91 92 93 ··· 97 下一页

导航