1 #import "RootViewController.h" 2 3 #define width [UIScreen mainScreen].bounds.size.width 4 #define heigthY 150 5 #define scrollTime 1 6 7 ...
分类:
其他好文 时间:
2015-07-08 00:22:59
阅读次数:
163
1 #import "RootViewController.h" 2 3 #define width [UIScreen mainScreen].bounds.size.width 4 #define heigthY 150 5 6 @interface RootViewController ...
分类:
其他好文 时间:
2015-07-07 16:09:53
阅读次数:
122
#define SCREEN_SIZE [UIScreen mainScreen].bounds.size
#define KImageCount 3
#define KImage_Height 250
@interface ViewController ()
@property (nonatomic, strong) UIScrollView * scrollView;
@pro...
分类:
移动开发 时间:
2015-07-02 17:33:11
阅读次数:
107
UIScreen是与设备有关的物理屏幕
Window是一个窗口对应UIWindow类,继承自UIView,window要显示在Screen上必须设置为主窗口并且可见。接下来就可以往UIWindow上面添加一些控件了。
下图就是简单地层次关系
ViewController是用来组织和控制视图的,与上图不同的是这里使用了视图控制器ViewController,不需要直接将view指定给w...
分类:
移动开发 时间:
2015-07-02 01:07:48
阅读次数:
244
模仿书上或网上的例子,每次最开始就是在- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 加:self.window = [[UIWi...
#import "FourViewController.h"
#import "View+MASAdditions.h"
#import "FiveViewControllerr.h"
#define WS(weakSelf) __weak __typeof(&*self)weakSelf = self;
#define SCREEN_WIDTH [UIScreen mainScreen...
分类:
移动开发 时间:
2015-07-01 12:25:27
阅读次数:
202
#define SINGLE_LINE_WIDTH (1/[UIScreen mainScreen].scale)
#define SINGLE_LINE_ADJUST_OFFSET ((1/[UIScreen mainScreen].scale)/2)
- (void)viewDidLoad {
[super
viewDidLoad];
...
分类:
移动开发 时间:
2015-07-01 10:05:36
阅读次数:
131
floatscale = [[UIScreenmainScreen]scale];//得到设备的分辨率[imageView setContentScaleFactor:[[UIScreen mainScreen]scale]];将设备的分辨率赋给imageView。好像是这样,当scale=1的时候...
分类:
其他好文 时间:
2015-06-27 19:52:03
阅读次数:
128
ios7下获取的屏幕高度[UIScreen mainScreen].bounds.size.height=1024ios8下获取的屏幕高度[UIScreen mainScreen].bounds.size.height=768 if ([[[UIDevice currentDevice] syste...
分类:
其他好文 时间:
2015-06-20 00:14:22
阅读次数:
210
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary
*)launchOptions {
self.window = [[UIWindow
alloc] initWithFrame:[[UIScreen
mainScreen] bounds]];...
分类:
移动开发 时间:
2015-06-18 22:20:15
阅读次数:
202