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
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
上一个是绘制简单图形,这一篇学习绘制文字、图像 //获取画布 CGContextRef context=UIGraphicsGetCurrentContext(); //设置边框颜色 CGContextSetStrokeColorWithColor(context, [UIColor...
分类:
其他好文 时间:
2015-04-08 13:08:45
阅读次数:
113
os开发-UIColor的使用。在ios开发中,经常遇到对UIColor的相关操作。比如这样 self.backgroundColor = [UIColorredColor];这里的redColor是UIColor定义好的颜色。可以直接使用。相同的,还有这样几种。UIColor bla...
分类:
其他好文 时间:
2015-04-08 13:03:16
阅读次数:
104
+ (UIColor *) colorWithHexString: (NSString *) stringToConvert{ NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet....
分类:
Web程序 时间:
2015-04-07 17:27:19
阅读次数:
120
1、视图的显示基于图层,通过控制图层同样能控制显示效果,获取当前的视图的layer,并为其增加圆角边框。
//设置layer边框的宽度为2
view.layer.borderWidth=2;
//如果需要为layer添加颜色需要转换为CGColor对象
view.layer.borderColor=[UIColor greenColor].CGColor;
//将边框...
分类:
其他好文 时间:
2015-04-07 12:05:55
阅读次数:
157
第一步://在info.plist中添加一个字段:view controller -base status bar 设置为NO;//导航颜色[[UINavigationBar appearance] setBarTintColor:[UIColor XXXX]];[[UITableViewCell ...
分类:
移动开发 时间:
2015-04-07 11:16:52
阅读次数:
130
1.TabBar的层次结构
2.自定义TabBar的背景
可以将一个很短的图片拉长作为背景图片,方法:
self.backgroundColor = [UIColor
colorWithPatternImage:[UIImage
imageWithName:@"tabbar_background"]];
- (id)initWithFrame:(CGRect)f...
分类:
其他好文 时间:
2015-04-06 01:07:21
阅读次数:
177
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