设置全局导航栏颜色,标题大小和UIBarButtonItem字体大小 在appdelegate里面设置 swift: UINavigationBar.appearance().barTintColor = UIColor.init(red: 47, green: 48, blue: 52) UINa ...
分类:
其他好文 时间:
2016-08-15 14:17:13
阅读次数:
148
web_about.backgroundColor = [UIColor clearColor]; web_about.opaque = NO; 最关键的是嵌入的HTML里: <body style = "background-color: transparent"> 如果有更好的方法, 请在评论里 ...
分类:
Web程序 时间:
2016-08-14 23:59:11
阅读次数:
451
label 不同颜色 UILabel* noteLabel = [[UILabel alloc] init]; noteLabel.frame = CGRectMake(60, 100, 200, 100); noteLabel.textColor = [UIColor blackColor]; n ...
分类:
其他好文 时间:
2016-08-12 11:29:18
阅读次数:
106
UIColor 转UIImage(可将该方法作为一个UIImage的分类) - (UIImage *)imageWithColor:(UIColor *)color { //描述一个矩形 CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f); //开启图形 ...
分类:
移动开发 时间:
2016-08-10 22:43:48
阅读次数:
294
当你看到这篇博客你就已经发现了用_searchBar.backgroundColor = [UIColor clearColor];来设置UISearchBar的颜色完全没有效果; 并且,有些方法是想通过遍历出UISearchBarBackground来移除它实现背景透明,也并没有什么卵用。 下面这 ...
分类:
其他好文 时间:
2016-08-09 22:11:43
阅读次数:
181
今天在公司的项目中使用UIview来加载图片.在6上完全没有问题,但是在6sp上就出现了显示问题 UIView.BackgroundColor = [UIColor colorWithPatternImage:[UIImage ImageNamed:"bg.png"]]; 显示的是平铺的效果.会出现 ...
分类:
其他好文 时间:
2016-08-08 20:56:12
阅读次数:
177
//给某个view增加颜色透明度渐变图层 - (void) insertTransparentGradient { NSLog(@"%@",NSStringFromCGRect(self.imgView.bounds)); UIColor *colorOne = [UIColor colorWith ...
分类:
其他好文 时间:
2016-08-02 19:01:01
阅读次数:
174
[[UITabBarItem appearance] setTitleTextAttributes:@{ UITextAttributeTextColor : [UIColor blackColor],UITextAttributeFont:[UIFont fontWithName:@"Marion ...
分类:
其他好文 时间:
2016-08-01 17:37:49
阅读次数:
248
UIView*view1=[[UIView alloc]initWithFrame:CGRectMake(10,30,300,30)]; view1.backgroundColor=[UIColor redColor]; [self.window addSubview:view1]; [view1 ...
分类:
其他好文 时间:
2016-08-01 06:52:42
阅读次数:
194
- (void)drawTextInRect:(CGRect)rect { CGSize shadowOffset = self.shadowOffset; UIColor *textColor = self.textColor; CGContextRef c = UIGraphicsGetCurr ...
分类:
移动开发 时间:
2016-07-22 21:13:09
阅读次数:
273