码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
自定义textView限制字数
ViewController.m #import "JYZTextView.h" #define kTextBorderColor RGBCOLOR(227,224,216) #undef RGBCOLOR #define RGBCOLOR(r,g,b) [UIColor colorWithRed:
分类:其他好文   时间:2016-02-15 11:59:51    阅读次数:186
抽奖及背景图片的透明度设置时连着转盘图片也跟着虚幻解决方法
blackView.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.5];
分类:其他好文   时间:2016-02-01 18:47:30    阅读次数:133
给button添加边框和圆角
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; btn.frame = CGRectMake(100, 100, 50, 50); btn.backgroundColor = [UIColor redColor]; btn.
分类:其他好文   时间:2016-02-01 18:47:12    阅读次数:100
BLOCK
#import <UIKit/UIKit.h> typedef void (^BLOCK)(UIColor *); @interface SecondViewController : UIViewController @property(nonatomic,copy)BLOCK backColorB
分类:其他好文   时间:2016-01-27 21:23:53    阅读次数:115
IOS 自定义导航栏标题和返回按钮标题
IOS中自定义导航栏标题: UILabel *titleText = [[UILabel alloc] initWithFrame: CGRectMake(160, 0, 120, 50)]; titleText.backgroundColor = [UIColor clearColor]; tit...
分类:移动开发   时间:2016-01-27 14:38:41    阅读次数:303
20160125UILayer
UIView 主要负责视图与用户的交互,真正的内容显示是通过UIView里面的图层CALayer来完成的(没有交互能力)1.创建CALayerCALayer *layer = [CALayer layer];layer.backgroundColour = [UIColor redColor].CG...
分类:其他好文   时间:2016-01-25 22:36:06    阅读次数:202
iOS滑动tableView来改变导航栏的颜色-1
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{ [self.navigationController.navigationBar setBackgroundImage:[self imageWithBgColor:[UIColor col...
分类:移动开发   时间:2016-01-25 11:33:14    阅读次数:251
ios CALayer之图片剪切2
1 /**/ 2 // 设置layer边框 3 self.customView.layer.borderWidth = 10; 4 // 设置layer边框颜色 5 self.customView.layer.borderColor =[UIColor bl...
分类:移动开发   时间:2016-01-24 00:38:29    阅读次数:322
ios CALayer之图片剪切
1 self.iconView.layer.borderWidth = 10;2 self.iconView.layer.borderColor = [UIColor purpleColor].CGColor;3 self.iconView.layer.cornerRadius = ...
分类:移动开发   时间:2016-01-24 00:36:19    阅读次数:222
[iOS]把16进制(#871f78)颜色转换UIColor
//// ViewController.m// text//// Created by 李东旭 on 16/1/22.// Copyright © 2016年 李东旭. All rights reserved.//#import #import "ViewController.h"// 定义...
分类:移动开发   时间:2016-01-23 13:13:30    阅读次数:146
848条   上一页 1 ... 27 28 29 30 31 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!