上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: #pragma mark - 编辑完成 -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { [self.view endEditing:YES]; } -(BOOL)textFieldShouldReturn:(UITextField *)textField { [self.view endEdit... 阅读全文
posted @ 2016-05-10 18:14 小屁孩~ 阅读(101) 评论(0) 推荐(0) 编辑
摘要: - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{ if ([segue.destinationViewController isKindOfClass:[OneVC class]]) { OneVC *one = segue.destinationViewController; ... 阅读全文
posted @ 2016-05-10 17:52 小屁孩~ 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 上边是字体,下边是图片 阅读全文
posted @ 2016-05-05 17:56 小屁孩~ 阅读(365) 评论(0) 推荐(0) 编辑
摘要: button.imageEdgeInsets = UIEdgeInsetsMake(0, labelWidth, 0, -labelWidth);button.titleEdgeInsets = UIEdgeInsetsMake(0, -imageWith, 0, imageWith); 获取图片宽 阅读全文
posted @ 2016-05-05 17:53 小屁孩~ 阅读(434) 评论(0) 推荐(0) 编辑
摘要: @property (strong, nonnull) UIVisualEffectView *visualEffectView; -(void)setBackImageView { 阅读全文
posted @ 2016-05-05 14:45 小屁孩~ 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 转自http://blog.sina.com.cn/s/blog_74461f3201018b5x.html 阅读全文
posted @ 2016-04-27 14:27 小屁孩~ 阅读(1632) 评论(0) 推荐(0) 编辑
摘要: cookie清除 NSHTTPCookie *cookie; NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; for (cookie in [storage cookies]) { [stor 阅读全文
posted @ 2016-04-26 10:26 小屁孩~ 阅读(983) 评论(0) 推荐(0) 编辑
摘要: 方法一:自定义视图的方法 就是在导航向上添加一个titleView,可以使用一个label,再设置label的背景颜色透明,字体什么的设置就很简单了。 方法二:在默认显示的标题中直接修改文件的大小和颜色也是可以的 阅读全文
posted @ 2016-04-25 14:48 小屁孩~ 阅读(2767) 评论(0) 推荐(0) 编辑
摘要: 设置statusBar的【前景色部分】 1.plist设置statusBar 在plist里增加一行 UIStatusBarStyle(或者是“Status bar style”也可以),这里可以设置两个值,就是上面提到那两个 UIStatusBarStyleDefault 和 UIStatusBa 阅读全文
posted @ 2016-04-25 14:44 小屁孩~ 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 打印结果: 需要对URL部分子串进行比较,需要截取其中一些字段,这种方式比较直观。 阅读全文
posted @ 2016-04-21 14:20 小屁孩~ 阅读(829) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页