码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
Lable自适应高度方法的封装
ios7---Lable自适应高度封装 +(UILabel *)getInfoLabel:(UILabel *)label withText:(NSString *)ktext withFont:(CGFloat )kfont withtosize:(CGRect)krect withBackGroundColor:(UIColor *)kbackgroundColor { //内容显示 ...
分类:其他好文   时间:2015-04-08 16:29:35    阅读次数:94
清除UITableView底部多余的分割线
1、加方法 -(void)setExtraCellLineHidden: (UITableView *)tableView{ UIView *view = [UIView new];   view.backgroundColor = [UIColor clearColor];   [tableView setTableFooterView:view];   } 2、在 - (voi...
分类:其他好文   时间:2015-04-08 16:25:07    阅读次数:104
Quart2D文字图像绘制
上一个是绘制简单图形,这一篇学习绘制文字、图像 //获取画布 CGContextRef context=UIGraphicsGetCurrentContext(); //设置边框颜色 CGContextSetStrokeColorWithColor(context, [UIColor...
分类:其他好文   时间:2015-04-08 13:08:45    阅读次数:113
(转)UIColor 的使用
os开发-UIColor的使用。在ios开发中,经常遇到对UIColor的相关操作。比如这样 self.backgroundColor = [UIColorredColor];这里的redColor是UIColor定义好的颜色。可以直接使用。相同的,还有这样几种。UIColor bla...
分类:其他好文   时间:2015-04-08 13:03:16    阅读次数:104
16进制颜色(html颜色值)字符串转为UIColor
+ (UIColor *) colorWithHexString: (NSString *) stringToConvert{ NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet....
分类:Web程序   时间:2015-04-07 17:27:19    阅读次数:120
layer和3D仿射变换
1、视图的显示基于图层,通过控制图层同样能控制显示效果,获取当前的视图的layer,并为其增加圆角边框。 //设置layer边框的宽度为2 view.layer.borderWidth=2; //如果需要为layer添加颜色需要转换为CGColor对象 view.layer.borderColor=[UIColor greenColor].CGColor; //将边框...
分类:其他好文   时间:2015-04-07 12:05:55    阅读次数:157
iOS设置导航与其标题的颜色及字体大小和系统默认TabBar的相关设置与使用方法
第一步://在info.plist中添加一个字段:view controller -base status bar 设置为NO;//导航颜色[[UINavigationBar appearance] setBarTintColor:[UIColor XXXX]];[[UITableViewCell ...
分类:移动开发   时间:2015-04-07 11:16:52    阅读次数:130
【新浪微博项目】05--自定义TabBarButton
1.TabBar的层次结构 2.自定义TabBar的背景 可以将一个很短的图片拉长作为背景图片,方法: self.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageWithName:@"tabbar_background"]]; - (id)initWithFrame:(CGRect)f...
分类:其他好文   时间:2015-04-06 01:07:21    阅读次数:177
UIview 设置指定的几个角为圆角
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(120,10,80,80)]; view.backgroundColor = [UIColor redColor];[self.view addSubview:view2]; UIBezierPath *maskPath = [UIBezierPath be...
分类:其他好文   时间:2015-04-03 15:18:56    阅读次数:129
修改状态栏的方法
UIView *statusBarView=[[UIView alloc] initWithFrame:CGRectMake(0, 0, ScreenWidth, 20)]; statusBarView.backgroundColor=[UIColor blackColor]; [se...
分类:其他好文   时间:2015-04-01 19:35:52    阅读次数:91
848条   上一页 1 ... 61 62 63 64 65 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!