码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
UILabel
UILabel的相关操作:①初始化:UILabel是UIView的子类,拥有UIVi所有办法 UILable *label = [[UILabel alloc] initWithFrame:CGRectMake(,,,);②背景颜色 label.backgroundColor = [UIColor ...
分类:其他好文   时间:2015-04-01 19:15:10    阅读次数:129
Objective C - UIKit
UIColorUIColor *color = [UIColor greenColor];newColor = [color colorWithAlphaComponent:0.3];// alpha 表示透明度,1表示不透明,0表示全透明UIFont系统推荐字体(建议用于正文)UIFont *fo...
分类:其他好文   时间:2015-04-01 01:39:20    阅读次数:146
iOS 十六进制转RGB
+ (UIColor *)colorWithRGBHex:(UInt32)hex{ return [UIColor colorWithRGBHex:hex alpha:1.0f];}+ (UIColor *)colorWithRGBHex:(UInt32)hex alpha:(CGFloat)...
分类:移动开发   时间:2015-03-31 19:56:43    阅读次数:143
iOS 改变tableview cell的背景色
cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.frame]; cell.selectedBackgroundView.backgroundColor = [UIColor colorWithRed:0.855...
分类:移动开发   时间:2015-03-31 14:40:56    阅读次数:109
为类目(类别)添加属性,使用storyboard设置边框颜色
为按钮设置边框以及边框颜色通过storyboard,这里使用了Category为CALayer添加了一个UIColor类型的boderColorFromUIColor。...
分类:其他好文   时间:2015-03-31 12:56:03    阅读次数:104
通过改变uiview的layer的frame来实现进度条
#import @interface ProgressView : UIView@property(nonatomic,assign)CGFloat progress;@property(nonatomic,strong)UIColor *layColor;@end#import "Progress...
分类:其他好文   时间:2015-03-30 22:56:27    阅读次数:128
//平铺一个像素的图片到整个
UIImage* myImage = [[UIImageimageNamed:@"img_bg.png"]stretchableImageWithLeftCapWidth:1topCapHeight:1000];UIColor*bgColormyImage = [UIColorcolorWithPa...
分类:其他好文   时间:2015-03-21 12:33:55    阅读次数:115
计算UITextView的滑动高度
1 - (CGFloat)getHeightByTextView:(UITextView *)myTextView withContent:(NSString *)content withFontSize:(CGFloat)size withTextColor:(UIColor *)color 2....
分类:其他好文   时间:2015-03-20 21:39:37    阅读次数:115
去掉tableView多余的分割线
-(void)setExtraCellLineHidden: (UITableView *)tableView{ UIView *view = [UIView new]; view.backgroundColor = [UIColor clearColor]; [tableView...
分类:其他好文   时间:2015-03-20 20:22:04    阅读次数:99
iOS 取消多余tableView的横线的写法
- (void)setExtraCellLineHidden: (UITableView *)tableView{     UIView *view =[ [UIView alloc]init];     view.backgroundColor = [UIColor clearColor];     [tableView setTableFooterView:view];  ...
分类:移动开发   时间:2015-03-20 14:30:58    阅读次数:145
848条   上一页 1 ... 62 63 64 65 66 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!