码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
设置全局导航栏颜色,标题大小和UIBarButtonItem字体大小
设置全局导航栏颜色,标题大小和UIBarButtonItem字体大小 在appdelegate里面设置 swift: UINavigationBar.appearance().barTintColor = UIColor.init(red: 47, green: 48, blue: 52) UINa ...
分类:其他好文   时间:2016-08-15 14:17:13    阅读次数:148
让UIWebView背景透明的方法
web_about.backgroundColor = [UIColor clearColor]; web_about.opaque = NO; 最关键的是嵌入的HTML里: <body style = "background-color: transparent"> 如果有更好的方法, 请在评论里 ...
分类:Web程序   时间:2016-08-14 23:59:11    阅读次数:451
label 不同颜色
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
iOS开发-UIColor和UIImage之间的转换
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
修改UISearchBar的背景颜色
当你看到这篇博客你就已经发现了用_searchBar.backgroundColor = [UIColor clearColor];来设置UISearchBar的颜色完全没有效果; 并且,有些方法是想通过遍历出UISearchBarBackground来移除它实现背景透明,也并没有什么卵用。 下面这 ...
分类:其他好文   时间:2016-08-09 22:11:43    阅读次数:181
UIview加载图片的坑.
今天在公司的项目中使用UIview来加载图片.在6上完全没有问题,但是在6sp上就出现了显示问题 UIView.BackgroundColor = [UIColor colorWithPatternImage:[UIImage ImageNamed:"bg.png"]]; 显示的是平铺的效果.会出现 ...
分类:其他好文   时间:2016-08-08 20:56:12    阅读次数:177
给某个view增加颜色渐变图层
//给某个view增加颜色透明度渐变图层 - (void) insertTransparentGradient { NSLog(@"%@",NSStringFromCGRect(self.imgView.bounds)); UIColor *colorOne = [UIColor colorWith ...
分类:其他好文   时间:2016-08-02 19:01:01    阅读次数:174
navigation和tabbar上的文字.图片 自定义
[[UITabBarItem appearance] setTitleTextAttributes:@{ UITextAttributeTextColor : [UIColor blackColor],UITextAttributeFont:[UIFont fontWithName:@"Marion ...
分类:其他好文   时间:2016-08-01 17:37:49    阅读次数:248
UIView的层次调整,及子view布局模式自动布局模式(停靠模式)
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
ios文字描边
- (void)drawTextInRect:(CGRect)rect { CGSize shadowOffset = self.shadowOffset; UIColor *textColor = self.textColor; CGContextRef c = UIGraphicsGetCurr ...
分类:移动开发   时间:2016-07-22 21:13:09    阅读次数:273
848条   上一页 1 ... 17 18 19 20 21 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!