摘要: NSString *sourcePath = [[NSBundle mainBundle]resourcePath]; 阅读全文
posted @ 2016-01-26 19:46 Bo-tree 阅读(150) 评论(0) 推荐(0) 编辑
摘要: UISwitch *swh = [[UISwitch alloc]initWithFrame:CGRectMake(100,100, 50, 30)]; swh.on = YES; [swh addTarget:self action:@selector(switchAction:) forCon... 阅读全文
posted @ 2016-01-26 19:06 Bo-tree 阅读(613) 评论(0) 推荐(0) 编辑
摘要: 在[self addsubView:xxx]中,self.name 和 _name的区别self.name 会调用重写的getter方法,而_name添加的只是_name 这个成员变量 阅读全文
posted @ 2016-01-26 19:05 Bo-tree 阅读(216) 评论(0) 推荐(0) 编辑
摘要: [self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"back_image.jpg"] forBarMetrics:UIBarMetricsDefault]; 阅读全文
posted @ 2016-01-26 19:04 Bo-tree 阅读(506) 评论(0) 推荐(0) 编辑
摘要: [bottomButton setTitleEdgeInsets:UIEdgeInsetsMake(10, -190, 10, 44)]; //上左下右 ||button.contentVerticalAlignment = UIControlContentVerticalAlignmentBo... 阅读全文
posted @ 2016-01-26 19:04 Bo-tree 阅读(253) 评论(0) 推荐(0) 编辑
摘要: UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"开始录制!" message:nil preferredStyle:UIAlertControllerStyleAlert]; UIA... 阅读全文
posted @ 2016-01-26 19:03 Bo-tree 阅读(175) 评论(0) 推荐(0) 编辑
摘要: @synthesize 相当于把属性当成成员变量来用,不用再写self.属性@synthesize myButton; 这样写了之后,那么编译器会自动生成myButton的实例变量,以及相应的getter和setter方法。注意:_myButton这个实例变量是不存在的,因为自动生成的实例变量为m... 阅读全文
posted @ 2016-01-26 19:02 Bo-tree 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 选中程序->右键->显示简介->打开方式 阅读全文
posted @ 2016-01-26 19:01 Bo-tree 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 选中右键->Services->Reveal in finder 阅读全文
posted @ 2016-01-26 19:01 Bo-tree 阅读(440) 评论(0) 推荐(0) 编辑
摘要: self performSelector: withObject: afterDelay:延迟事件再推出viewcontroller时要注意//取消所有延迟事件 [NSObject cancelPreviousPerformRequestsWithTarget:self]; 阅读全文
posted @ 2016-01-26 19:00 Bo-tree 阅读(179) 评论(0) 推荐(0) 编辑
摘要: CGFloat :在mac上自适应,在64位的系统,会变宽,32位会变窄,手机没变化float:没有变化 阅读全文
posted @ 2016-01-26 18:59 Bo-tree 阅读(406) 评论(0) 推荐(0) 编辑
摘要: cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@“图片名”]]; 阅读全文
posted @ 2016-01-26 18:58 Bo-tree 阅读(109) 评论(0) 推荐(0) 编辑
摘要: cmd+option+shift + 左箭头,收起所有代码段cmd+option+shift + 右箭头,打开所有代码段将方法或者注释收起,展开使用时只要鼠标在方法或注释的范围内就好收起:option + command + 移动代码注意:在移动代码时都是移动单行时无需选中,鼠标点击那一行的任何地方... 阅读全文
posted @ 2016-01-26 18:57 Bo-tree 阅读(355) 评论(0) 推荐(0) 编辑
摘要: [self.navigationController.navigationBar setTitleTextAttributes: @{NSFontAttributeName:[UIFont systemFontOfSize:19], NSForegroundColorAttributeName... 阅读全文
posted @ 2016-01-26 18:56 Bo-tree 阅读(303) 评论(0) 推荐(0) 编辑