上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
摘要: StackOverflowhttp://stackoverflow.com/a/7059499Question:I have aUIScrollViewthat has a series of labels which are rapidly updating numbers (every .06 ... 阅读全文
posted @ 2014-06-28 04:07 有妄想症的猫zz 阅读(490) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/lianbaixue/article/details/10579117简述:Cocoa框架中的NSPredicate用于查询,原理和用法都类似于SQL中的where,作用相当于数据库的过滤取。定义(最常用到的方法):NSPredicate *ca = ... 阅读全文
posted @ 2014-06-28 02:51 有妄想症的猫zz 阅读(572) 评论(0) 推荐(0) 编辑
摘要: 定义typedef void (^RFAudioBasicBlock) (void);typedef void (^RFAudioSuccessBlock) (BOOL flag);typedef void (^RFAudioSuccessDetailBlock) (BOOL flag, NSURL... 阅读全文
posted @ 2014-06-24 19:34 有妄想症的猫zz 阅读(8595) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/shenjx1225/article/details/9293269 阅读全文
posted @ 2014-06-20 11:19 有妄想症的猫zz 阅读(122) 评论(0) 推荐(0) 编辑
摘要: UITextFieldDelegate代理里面响应return键的回调:textFieldShouldReturn:。但是 UITextView的代理UITextViewDelegate 里面并没有这样的回调。但是有别的方法可以实现:UITextViewDelegate里面有这样一个代理函数:- (... 阅读全文
posted @ 2014-06-20 11:12 有妄想症的猫zz 阅读(27057) 评论(1) 推荐(1) 编辑
摘要: 在想要查看的 UIView 附近打个断点,运行,直到停在断点处,在控制台键入:po [view recursiveDescription],回车。(lldb) po [self recursiveDescription]; layer = > | > | | > | | ; ... 阅读全文
posted @ 2014-04-22 13:59 有妄想症的猫zz 阅读(1924) 评论(0) 推荐(0) 编辑
摘要: 创建一个 UIButton 的子类,重写其方法:- (void)drawRect:(CGRect)rect{ [[self layer] setCornerRadius:CORNER_RADIUS]; [[self layer] setMasksToBounds:YES]; ... 阅读全文
posted @ 2014-04-21 14:26 有妄想症的猫zz 阅读(2069) 评论(0) 推荐(0) 编辑
摘要: 更新:iOS8 版本已经不可用为 UIPopoverController 增加类别,如下://NSObject+UIPopover_Iphone.h#import @interface UIPopoverController (overrides)+(BOOL)_popoversDisabled;@... 阅读全文
posted @ 2014-04-17 17:18 有妄想症的猫zz 阅读(4621) 评论(2) 推荐(0) 编辑
摘要: //CCSprite+Animation.h#import "CCSprite.h"@interface CCSprite (Animation)+ (void)fadeWithOldSprite:(CCSprite *)oldSprite newSprite:(CCSprite *)newSpri... 阅读全文
posted @ 2014-04-17 10:50 有妄想症的猫zz 阅读(781) 评论(0) 推荐(0) 编辑
摘要: 第一步,隐藏导航栏底部的分割线如何隐藏导航栏底部的分割线(shadow image/ hairline)? navigationBar.clipsToBounds = YES; //隐藏 navigationBar.clipsToBounds = NO; //显示因为分割线... 阅读全文
posted @ 2014-04-12 21:31 有妄想症的猫zz 阅读(2454) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页