摘要:
[self.contentView addSubview:self.scrollView]; self.scrollView.userInteractionEnabled = NO; [self.contentView addGestureRecognizer:self.scro... 阅读全文
摘要:
打开终端输入:xcode-select --install 回车安装好了测试结果:gcc -v显示如下:xcode-select: note: install requested for command line developer toolsapple-1tekiiMac:~ apple-1$ g... 阅读全文
摘要:
在ios开发时, 程序的图标会被apple进行美化, 自动圆角, 加上阴影和反光效果;如果有时候不想要阴影和反光,可以这样做:在Info.plist中添加一个Icon already includes gloss effects并选择YES. 阅读全文
摘要:
设置上一级controller的backBarButtonItem.self.navigationItem.backBarButtonItem= [[UIBarButtonItem alloc]initWithTitle:@"返回" style:UIBarButtonItemStylePlainta... 阅读全文
摘要:
NSString *_string = [NSString stringWithFormat:@"123 456"];NSRange _range = [_string rangeOfString:@" "];if (_range.location != NSNotFound) { //有空格}... 阅读全文
摘要:
http://blog.csdn.net/kepoon/article/details/7763106 阅读全文
摘要:
在编译RegexKitLite的时候,报错如下:Undefined symbols for architecture i386:"_uregex_open", referenced from:_rkl_getCachedRegex in RegexKitLite.o"_uregex_groupCou... 阅读全文
摘要:
假设现有一NSNumber的变量A,要转换成NSString类型的B方法如下:NSNumberFormatter* numberFormatter = [[NSNumberFormatteralloc] init];B= [numberFormatter stringFromNumber:A];[n... 阅读全文
摘要:
nil就是把一个对象的指针置为空,只是切断了指针与内存中对象的联系;而release才是真正通知内存释放这个对象。如果没有release就直接nil,那么虽然不会出错,却等于自己制造内存泄漏了,因为nil之后release就已经不起作用了。因为一个接口对象在release之后,给它所分配等内存就已经... 阅读全文
摘要:
- (void)cellBtnClicked:(id)sender event:(id)event{NSSet *touches =[event allTouches];UITouch *touch =[touches anyObject];CGPoint currentTouchPosition ... 阅读全文
摘要:
近期,跟大多数开发者一样,我也正忙于对程序进行升级以适配iOS 7。最新的iOS 7外观上有大量的改动。从开发者的角度来看,导航栏和状态栏就发生了明显的变化。状态栏现在是半透明的了,这也就意味着导航栏会显示在状态栏后面。有些情 况下,导航栏的背景图片可以延伸显示到状态栏后面。之前我曾经写过一篇关于如... 阅读全文