一、页面跳转时停顿问题
在跳转后的页面添加背景色:[self.view setBackgroundColor:[UIColor colorWithRed:1.0f green:1.0f blue:1.0f alpha:1]];
二、页面布局被标题栏覆盖问题
- (id)init {
self = [super init];
if (self) {
...
分类:
其他好文 时间:
2015-06-07 09:49:23
阅读次数:
125
- (void)viewDidLoad {
[super viewDidLoad];
UITextField *textF = [[UITextField alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
textF.backgroundColor = [UIColor grayColor];
[sel...
分类:
其他好文 时间:
2015-06-05 10:20:28
阅读次数:
122
用GCD的方式,加载网络图片(主线程加载图片+类扩展方式)
用两种方法来实现网络加载图片
方法1:实现的效果:先加载背景色灰色,两秒后加载图片
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor=[UIColor grayColor];
...
分类:
编程语言 时间:
2015-06-04 22:51:42
阅读次数:
190
UILabel *showLabel = [[UILabel alloc]init]; showLabel.backgroundColor = [UIColor redColor]; [self.navigationController.view insertSubview:showLabel .....
分类:
其他好文 时间:
2015-06-04 13:35:16
阅读次数:
104
cell.selectedBackgroundView.backgroundColor = [UIColor whiteColor];//选中后变换,色彩的变换 cell.textLabel.highlightedTextColor = [UIColor colorWi...
分类:
移动开发 时间:
2015-06-03 19:02:37
阅读次数:
140
+ (UIColor *)colorWithHexString:(NSString *)hexString
{
NSString *colorString = [[hexString stringByReplacingOccurrencesOfString: @"#" withString: @""] uppercaseString];
CGFloat alpha, red, bl...
分类:
其他好文 时间:
2015-06-03 15:45:37
阅读次数:
100
初始化 UILabel *lable = [[UILabel alloc] init]; // 初始化
lable.frame = CGRectMake(30, 30, 200, 50); // 设置 lable 位置和大小
lable.backgroundColor = [UIColor orangeColor]; // 设置lable背景颜色
[self.windo...
分类:
其他好文 时间:
2015-06-02 20:14:16
阅读次数:
97
1. 设置按钮文字的尺寸 为 按钮自己的尺寸 button.size = [button.currentTitle sizeWithFont:button.titleLabel.font]; button.backgroundColor=[UIColor redColor];2...
分类:
移动开发 时间:
2015-06-01 11:24:37
阅读次数:
123
一般我们设置 一个view的背景 可以通过 在view上放一个imageView 来显示背景图片这里介绍另外一种方法可以直接通过改变view.backgroundColor的值 来达到上面的效果self.backgroundColor=[UIColorcolorWithPatternImage:[U...
分类:
其他好文 时间:
2015-05-31 18:20:26
阅读次数:
139
float viewWidth = 80;
UIBezierPath * path = [UIBezierPath bezierPath];
path.lineWidth = 2;
[[UIColor whiteColor] setStroke];
[path moveToPoint:CGPointMake((...
分类:
移动开发 时间:
2015-05-29 12:05:44
阅读次数:
666