UILabel的相关操作:①初始化:UILabel是UIView的子类,拥有UIVi所有办法 UILable *label = [[UILabel alloc] initWithFrame:CGRectMake(,,,);②背景颜色 label.backgroundColor = [UIColor ...
分类:
其他好文 时间:
2015-04-01 19:15:10
阅读次数:
129
UIColorUIColor *color = [UIColor greenColor];newColor = [color colorWithAlphaComponent:0.3];// alpha 表示透明度,1表示不透明,0表示全透明UIFont系统推荐字体(建议用于正文)UIFont *fo...
分类:
其他好文 时间:
2015-04-01 01:39:20
阅读次数:
146
+ (UIColor *)colorWithRGBHex:(UInt32)hex{ return [UIColor colorWithRGBHex:hex alpha:1.0f];}+ (UIColor *)colorWithRGBHex:(UInt32)hex alpha:(CGFloat)...
分类:
移动开发 时间:
2015-03-31 19:56:43
阅读次数:
143
cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.frame]; cell.selectedBackgroundView.backgroundColor = [UIColor colorWithRed:0.855...
分类:
移动开发 时间:
2015-03-31 14:40:56
阅读次数:
109
为按钮设置边框以及边框颜色通过storyboard,这里使用了Category为CALayer添加了一个UIColor类型的boderColorFromUIColor。...
分类:
其他好文 时间:
2015-03-31 12:56:03
阅读次数:
104
#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
1 - (CGFloat)getHeightByTextView:(UITextView *)myTextView withContent:(NSString *)content withFontSize:(CGFloat)size withTextColor:(UIColor *)color 2....
分类:
其他好文 时间:
2015-03-20 21:39:37
阅读次数:
115
-(void)setExtraCellLineHidden: (UITableView *)tableView{ UIView *view = [UIView new]; view.backgroundColor = [UIColor clearColor]; [tableView...
分类:
其他好文 时间:
2015-03-20 20:22:04
阅读次数:
99
- (void)setExtraCellLineHidden: (UITableView *)tableView{
UIView *view =[ [UIView
alloc]init];
view.backgroundColor = [UIColor
clearColor];
[tableView
setTableFooterView:view];
...
分类:
移动开发 时间:
2015-03-20 14:30:58
阅读次数:
145