码迷,mamicode.com
首页 >  
搜索关键字:uiscreen    ( 254个结果
UI-UIView
UIViewUIWindow创建windowwindow就是窗口,使用UIWindow类来表示窗口,一般情况下一个应用程序只创建一个UIWindow对象 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; // 背景色 self.window.backgroundColor...
分类:其他好文   时间:2015-07-29 21:23:09    阅读次数:111
iOS开发屏幕适配问题解决方案
屏幕适配问题共有四种解决方案:(1)根据屏幕宽高写控件frame(下策);(2)Autoresizing的使用(中策);(3)AutoLayout的使用(上策);(4)sizeClasses+AutoLayout的使用(上上策)。下面将会分别来进行叙述。 (1)根据当前屏幕的宽高写frame       在新特性界面中,根据:[UIScreen mainScreen].bounds.s...
分类:移动开发   时间:2015-07-26 06:12:26    阅读次数:157
UIScrollView属性
UIImage *image=[UIImage imageNamed:@"1.png"]; //滚动视图 self.scrollV=[[UIScrollView alloc] init]; self.scrollV.frame=[UIScreen mainScreen].bounds; self.s...
分类:其他好文   时间:2015-07-24 12:06:17    阅读次数:125
将NSTimer添加至RunLoop中的两种方法区别
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {     self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bou...
分类:其他好文   时间:2015-07-18 15:38:42    阅读次数:159
iOS开发——UI篇&ScrollView详解
ScrollView详解创建方式1:StoryBoard/Xib这里StoarBoard就不多说,直接拖就可以,说太多没意思,如果连这个都不会我只能先给你跪了!2:代码:CGRect bounds = [ [ UIScreen mainScreen ] applicationFrame ] ;UIS...
分类:移动开发   时间:2015-07-17 22:39:37    阅读次数:163
iOS 自动布局详细介绍
1. 自动布局的理解iOS自动布局很有用,可以在不同size的屏幕上运行,原先看的头痛,还是习惯用最蠢的[UIScreen mainScreen].bounds.size.width等来布局,后来实在不行了,开始好好地看自动布局,发现理解后真的很好用,现在就来分享分享我的心得吧。首先要明白一个控件在...
分类:移动开发   时间:2015-07-14 17:08:53    阅读次数:177
UIView 的使用
直接上代码: // UIWindow *aWindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] ; // self.window = aWindow ; // [aWindow release] ;// 效果等同上述代码 // 当应用程序加载完成后,创建一个跟屏幕尺寸一样大的wind...
分类:其他好文   时间:2015-07-14 10:05:11    阅读次数:116
UITableView的详细使用
首先创立 tableViewUITableView *tableView = [[UITableView alloc] initWithFrame:[UIScreen mainScreen].bounds style:UITableViewStyleGrouped]; [self addSubvi....
分类:其他好文   时间:2015-07-10 00:06:43    阅读次数:195
UI_UITableView_搭建
创建 tableViewUITableViewStyle 有两种选择#pragma mark - 创建 tableView - (void)createTableView { // 枚举类型共有两个 self.mainTableView = [[UITableView alloc] initWithFrame:[UIScreen mainScreen].bounds style:UI...
分类:其他好文   时间:2015-07-09 19:54:00    阅读次数:104
UI 常用方法总结之--- UITableView
UI 常用方法总结之--- UITableView (不断更新中)UITableView : UIScrollView 1. 创建一个 UITableView 对象ITableView *tableView = [[UITableView alloc]initWithFrame:[[UIScreen...
分类:其他好文   时间:2015-07-08 14:23:25    阅读次数:83
254条   上一页 1 ... 13 14 15 16 17 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!