//字体 textLabel.font = [UIFont systemFontOfSize:13]; CGFloat labelWidth = [UIScreen mainScreen].bounds.size.width-100; // 创建文字 NSString *string =@"...
分类:
其他好文 时间:
2016-01-25 13:08:47
阅读次数:
167
#import "FirstHeaderReusableView.h"#import "FirstFooterReusableView.h"#define ITEMWIDTH ([UIScreen mainScreen].bounds.size.width - 30) / 2#define ITEM...
分类:
其他好文 时间:
2016-01-25 08:47:14
阅读次数:
140
1.创建window 1 //1.创建window,UIScreen是屏幕类,创建和屏幕等大的窗口 2 self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 3 //2.背景颜色 4...
创建方式1:StoryBoard/Xib这里StoarBoard就不多说,直接拖就可以,说太多没意思,如果连这个都不会我只能先给你跪了!2:代码:123CGRect bounds = [ [ UIScreen mainScreen ] applicationFrame ] ;UIScrollView...
分类:
其他好文 时间:
2016-01-21 23:23:08
阅读次数:
1638
CGRect rect = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 64); UIGraphicsBeginImageContext(rect.size); CGContextRef context = UIGraphi.....
分类:
其他好文 时间:
2016-01-19 10:28:10
阅读次数:
148
UIWindow 视窗 a. 所有的UI直接或间接的放在UIWindow之上。 b. UIWindow 继承自UIView. c. 视窗的创建:初始化视窗对象,指定其尺寸,以主屏幕([UIScreen mainScreen])范围指定. d. 将视窗设置为主窗口并使其可见 [window makeK...
分类:
移动开发 时间:
2016-01-16 11:50:46
阅读次数:
198
第一种:CGFloat width = CGRectGetWidth([[UIScreen mainScreen] bounds]);CGFloat aspectRatio = 1.5;maker.width.equalTo(width);maker.height.equalTo(aspectRat...
分类:
其他好文 时间:
2016-01-16 11:48:17
阅读次数:
131
#import "ViewController.h"#import "YZUIScrollView.h"#define kuan ([UIScreen mainScreen].bounds.size.width+20)#define gao [UIScreen mainScreen].bounds....
分类:
移动开发 时间:
2016-01-13 21:52:03
阅读次数:
296
#import "ViewController.h"#define kuan [UIScreen mainScreen].bounds.size.width#define gao [UIScreen mainScreen].bounds.size.height@interface ViewContr...
分类:
移动开发 时间:
2016-01-12 23:06:11
阅读次数:
377
iOS-常见问题问题一:我们在写程序的时候,屏幕的宽高我们不能写固定,例如写成320,480之类的,因为我们要适配不同的手机。常用的一种方法是在 .pch文件中设置宽高,因为.pch是一个预编译文件,在全局都能访问到。#define ScreenHeight [UIScreen mainScreen...
分类:
移动开发 时间:
2016-01-09 12:23:29
阅读次数:
151