// 获取屏幕大小的viewUIView *contentView = [[UIView alloc] initWithFrame:[UIScreen mainScreen].bounds]; // bound是个矩形 bounds类型是CGRect#pragma mark - UILable知识点...
分类:
其他好文 时间:
2015-12-06 00:11:02
阅读次数:
238
//// AppDelegate.m// NiHongPractice//#import "AppDelegate.h"#define kColorValue arc4random_uniform(256) / 255.0#define kScreenWidth [UIScreen mainSc.....
分类:
其他好文 时间:
2015-12-06 00:02:18
阅读次数:
167
UIIimageView *imageView = [UIImageView alloc]init];[imageView setContentScaleFactor:[[UIScreen mainScreen] scale]];imageView.contentMode = UIViewConte...
分类:
移动开发 时间:
2015-12-04 12:25:34
阅读次数:
181
1.UIWindow定义初始:1??:初始化窗口:self.window = [[[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]]autorelease];2??:设置背景色:self.window.backgroundColo...
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; self.window.backgroundColor = [UIColor whiteColor];UITabBarController *m....
分类:
其他好文 时间:
2015-11-20 21:30:59
阅读次数:
158
一、基本知识1、初始化 UIScrollView#import "ViewController.h"#define WIDTH[[UIScreen mainScreen]bounds].size.width#define HEIGHT[[UIScreen mainScreen]bounds].siz...
分类:
其他好文 时间:
2015-11-19 18:31:14
阅读次数:
201
1.在程序中涉及到全屏的宽高的时候,初始化的时候,代码中不要写320和480#define Screen_height [[UIScreen mainScreen] bounds].size.height#define Screen_width [[UIScreen mainScreen] boun...
分类:
移动开发 时间:
2015-11-16 10:33:35
阅读次数:
143
#import?"ViewController.h"
#define?kScreenSize?[UIScreen?mainScreen].bounds.size
//遵守协议
@interface?ViewController?()?<UICollectionViewDataSource,UICollectionViewDelegate>
{
????UIC...
分类:
其他好文 时间:
2015-11-09 14:12:16
阅读次数:
190
可能有人对[[UIScreen mainScreen]bounds]和[UIScreen mainScreen]applicationFrame]的区别不是很了解,其实很简单.bounds就是屏幕的全部区域,包括状态栏.而applicationFrame指的是app显示的区域,不包括状态栏.如果你讲...
分类:
移动开发 时间:
2015-11-03 00:44:19
阅读次数:
276
#import?"RootViewController.h"
#define?kScreenSize?[UIScreen?mainScreen].bounds.size
#define?kPrintDebug?NSLog(@"%s",__func__)
@interface?RootViewController?()<UIScrollViewDelegate>
{
?...
分类:
其他好文 时间:
2015-10-31 13:09:10
阅读次数:
175