Mac/iOS/Cocoa
小瑞草
这个作者很懒,什么都没留下…
展开
-
谈谈我对delegate和protocol的理解
<br />前言:最近在学习iPhone开发,对Protocol和delegate理解不是很好;在cocoachina瞎逛的时候发现了有个高手对它们这样比喻...以下是原文!<br /><br /><br /><br />我上班的工作主要内容包括 (1)写代码(2)写文档(3)测试程序(4)接电话(5)会见客户(1)(2)我自己全权负责,但是后面(3)(4)(5)我不想或者不方便自己做,所以我想找个助手(delegate)帮我做这些事,于是我定了一个招聘要求(Protocol),里写明我的助手需要会做(转载 2011-05-12 11:42:00 · 677 阅读 · 0 评论 -
iOS7.1 UISearchBar 去掉黑线..
发现我们的应用 iOS7.1 编译后 UISearchBar 背景色是黑色下图为正常效果(凹进去的搜索框并不是 UISearchBar 背景图片,而是一个 UIButton )效果是点击后隐藏 UIButton 展开 UISearchBariOS7.1 编译后的效果尝试修改barTintColor 属性searchBar.barTin原创 2014-03-14 18:03:22 · 7519 阅读 · 1 评论 -
『无法安装应用程序,因为XXXXXXXX的证书无效』解决方法。
iOS7.1 升级之后通过Safari 点击以下超链接会提示『无法安装应用程序,因为XXXXXXXX的证书无效』itms-services://?action=download-manifest&url=http://example.com/manifest.plist解决方法是http://example.com/manifest.plist 该为 https://ex原创 2014-03-13 18:11:45 · 5498 阅读 · 0 评论 -
ios 正则表达式语法参考
1.去RegexKitLite下载类库,解压出来会有一个例子包及2个文件,其实用到的就这2个文件,添加到工程中。2.工程中添加libicucore.dylib frameworks。3.现在所有的nsstring对象就可以调用RegexKitLite中的方法了。NSString *email = @”kkk@aaa.com”;[email isMatched转载 2013-01-05 16:50:51 · 713 阅读 · 0 评论 -
Finding a lost dSYM
Finding a lost dSYMLast Updated: Nov 27, 2012 04:27AM PSTSometimes we just can't seem to find the correct dSYM anywhere. Not to worry, we've created the short video below on how to find those lost转载 2012-12-11 18:03:51 · 740 阅读 · 0 评论 -
UIMenuController控件的使用及菜单调不出的解决方法
UIMenuController *popMenu = [UIMenuController sharedMenuController]; UIMenuItem *item1 = [[UIMenuItem alloc] initWithTitle:@”1″ action:@selector(menuItem1Pressed:)];UIMenuItem *item2 = [[UIMenu转载 2012-09-26 14:12:33 · 4878 阅读 · 3 评论 -
【错误处理:】Collection <__NSArrayM: 0x12ec10e0> was mutated while being enumerated.
[cpp] view plaincopy*** Terminating app due to uncaught exception 'NSGenericException', reason: '*** Collection was mutated while being enumerated.' 用个for循环去读取一个数组A,然后删除一些元素的操作转载 2012-10-15 18:08:55 · 6671 阅读 · 2 评论 -
xcode4: Linker error: Directory not found for option
【问题】:{Directory not found for option '-L../../../Mac/Profile/lib [full path of that directory]Library not found for -lMyLib}【解决方法】:Go to "Get Info" on the target. Click the "Build Settin转载 2012-09-21 10:29:02 · 556 阅读 · 0 评论 -
IOS6.0框架及功能更新小结
原帖:http://www.cocoachina.com/bbs/read.php?tid=116108《IOS6.0框架及功能更新小结》作者: showt1me 1. Maps替换Google Map为苹果自行研发3D地图2. Social Network集成新浪微博,Facebook , Twitter等社交网络帐号管理。转载 2012-10-11 17:42:18 · 776 阅读 · 0 评论 -
iOS Controller 结构图
转载 2012-10-12 09:33:34 · 700 阅读 · 0 评论 -
file is universal (3 slices) but does not contain a(n) armv7s slice: /file/location for architecture
【问题】:I upgraded xcode version and when using external static libraries I get this message:ld: file is universal (3 slices) but does not contain a(n) armv7s slice: /file/location for architec转载 2012-09-14 10:10:29 · 1934 阅读 · 0 评论 -
iOS 面试时可能会提到的知识点,整理下!
1、frame bouns 区别 在view中画出区别2、代理、单例 手写代码3、设计模式 延迟加载 监听 kvo mvc4、深拷贝 浅拷贝 区别 举例开发工程中哪些实现了这些 ios中哪个实现了深拷贝5、动画 view中哪里可以实现动画6、layer 与view的区别 7、绘制图片文字 你的思路8、你站在开发者角度 为啥需原创 2014-06-10 14:53:48 · 1151 阅读 · 0 评论