//初始化 self.textView=[[UITextView alloc]initWithFrame:[[UIScreen mainScreen] bounds]]; //设置内容 self.textView.text=@"显示内容"; //设置字体 self.textView.font=[UI...
分类:
其他好文 时间:
2015-09-30 16:16:36
阅读次数:
139
1、在AppDelegage.m 文件 创建self.window 的跟视图(1)初始化窗口self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];(2)初始化菜单栏UIBarViewController ...
分类:
其他好文 时间:
2015-09-28 20:41:48
阅读次数:
163
1.普通设置 self.window = [[UIWindow alloc] initWithFrame: [[UIScreen mainScreen]bounds]]; self.window.backgroundColor = [UIColor orangeColor]; ViewControl...
分类:
其他好文 时间:
2015-09-28 18:53:13
阅读次数:
163
UISreen类代表了屏幕,开发中一般用来获取屏幕相关的属性,例如获取屏幕的大小。1234567//获取屏幕大小var screenBounds:CGRect = UIScreen.mainScreen().boundsprintln(screenBounds) //iPhone6输出:(0.0,0...
分类:
其他好文 时间:
2015-09-26 20:04:12
阅读次数:
288
问题一:我们在写程序的时候,屏幕的宽高我们不能写固定,例如写成320,480之类的,因为我们要适配不同的手机。常用的一种方法是在 .pch文件中设置宽高,因为.pch是一个预编译文件,在全局都能访问到。#define ScreenHeight [UIScreen mainScreen].bounds...
分类:
移动开发 时间:
2015-09-22 23:20:07
阅读次数:
198
iOS-常用技巧技巧一:我们在写程序的时候,屏幕的宽高我们不能写固定,例如写成320,480之类的,因为我们要适配不同的手机。常用的一种方法是在 .pch文件中设置宽高,因为.pch是一个预编译文件,在全局都能访问到。#define ScreenHeight [UIScreen mainScreen...
分类:
移动开发 时间:
2015-09-20 20:27:31
阅读次数:
164
技巧一:我们在写程序的时候,屏幕的宽高我们不能写固定,例如写成320,480之类的,因为我们要适配不同的手机。常用的一种方法是在 .pch文件中设置宽高,因为.pch是一个预编译文件,在全局都能访问到。#define ScreenHeight [UIScreen mainScreen].bounds...
分类:
移动开发 时间:
2015-09-20 00:06:33
阅读次数:
225
1 获取IOS设备屏幕信息 CGSize iOSDeviceScreenSize = [UIScreen mainScreen].bounds.size; NSString *s = [NSString stringWithFormat:@"%.0f x %.0f", iOSDevic...
分类:
移动开发 时间:
2015-09-17 21:24:46
阅读次数:
312
//创建一个窗口,设置大小为屏幕大小 self.window =[[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds]; //设置窗口的背景颜色// UIImage *myImage = [UIImage ima...
分类:
移动开发 时间:
2015-09-17 10:09:29
阅读次数:
312
//初始化窗口,这是UI设计的第一步 self.window=[[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; ?? ? ? ? self.window.backgroundColor=[UIColor whiteColor]; ? ? [self.window makeK...
分类:
其他好文 时间:
2015-09-16 14:23:34
阅读次数:
263