AppDelegate: self.window = UIWindow(frame: UIScreen.mainScreen().bounds) self.window!.backgroundColor = UIColor.whiteColor() self...
分类:
移动开发 时间:
2014-11-19 15:24:47
阅读次数:
207
NSShadow *shadow = [[NSShadow alloc] init]; [shadow setShadowOffset:CGSizeMake(1, 1)]; [shadow setShadowColor:[UIColor blackColor]]; [shadow setSha...
分类:
其他好文 时间:
2014-11-17 12:18:41
阅读次数:
138
tabbar(非自定义) 文字的颜色 [NSDictionary dictionaryWithObjectsAndKeys: [UIColor redColor], UITextAttributeTextColor, [UIFont fontWithName:@"Arial" size:0....
分类:
其他好文 时间:
2014-11-13 18:21:13
阅读次数:
133
#pragma 画虚线 UIImageView *imageView1 = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 320, 640)]; imageView1.backgroundColor = [UIColor redColor];....
分类:
移动开发 时间:
2014-11-13 12:35:30
阅读次数:
209
设置图片颜色 tabBarVCtrl.tabBar.selectedImageTintColor = [UIColor greenColor];//设置tabBarItem选中时的字图颜色,iOS 8.0中没有该属性(若设置,会出现警告)设置title颜色[[UITabBarItem appeara...
分类:
其他好文 时间:
2014-11-12 17:47:40
阅读次数:
176
+ (UIImage*)createImageWithColor:(UIColor*)color{ CGRectrect=CGRectMake(0.0f,0.0f,1.0f,1.0f); UIGraphicsBeginImageContext(rect.size); CGContextRefcont...
分类:
其他好文 时间:
2014-11-10 19:53:45
阅读次数:
236
1,粗体label.font = UIFont(name: "Helvetica-Bold", size: 32/2)2,pageControl pageControl.pageIndicatorTintColor =UIColor.grayColor() pageControl.curr...
分类:
移动开发 时间:
2014-11-07 18:55:27
阅读次数:
215
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
_scrollview1.backgroundColor = [UIColor greenColor];//设置背景色 绿色
_scrollview2...
分类:
移动开发 时间:
2014-11-07 14:51:49
阅读次数:
284
//创建button遮挡 UIButton *cover = [[UIButton alloc]initWithFrame:self.view.frame]; [cover setBackgroundColor:[UIColor blackColor]]; cover.alpha ...
分类:
其他好文 时间:
2014-11-06 09:20:09
阅读次数:
205
push是定义的一个button push.layer.masksToBounds = YES; push.layer.cornerRadius = 100; push.layer.borderWidth = 10; push.layer.borderColor = [[UIColor b...
分类:
移动开发 时间:
2014-11-05 14:28:12
阅读次数:
157