码迷,mamicode.com
首页 >  
搜索关键字:uiscreen    ( 254个结果
根据 字数 确定 UI控件高度
//字体 textLabel.font = [UIFont systemFontOfSize:13]; CGFloat labelWidth = [UIScreen mainScreen].bounds.size.width-100; // 创建文字 NSString *string =@"...
分类:其他好文   时间:2016-01-25 13:08:47    阅读次数:167
UICollectionViewController既有headerView又有footerView。
#import "FirstHeaderReusableView.h"#import "FirstFooterReusableView.h"#define ITEMWIDTH ([UIScreen mainScreen].bounds.size.width - 30) / 2#define ITEM...
分类:其他好文   时间:2016-01-25 08:47:14    阅读次数:140
UIWindow ,UIlable
1.创建window 1 //1.创建window,UIScreen是屏幕类,创建和屏幕等大的窗口 2 self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 3 //2.背景颜色 4...
分类:Windows程序   时间:2016-01-23 22:53:17    阅读次数:259
ScrollView详解
创建方式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
iOS 开发学习之 User Interface(2)UIWindow 视窗
UIWindow 视窗 a. 所有的UI直接或间接的放在UIWindow之上。 b. UIWindow 继承自UIView. c. 视窗的创建:初始化视窗对象,指定其尺寸,以主屏幕([UIScreen mainScreen])范围指定. d. 将视窗设置为主窗口并使其可见 [window makeK...
分类:移动开发   时间:2016-01-16 11:50:46    阅读次数:198
Masonry等比缩放
第一种: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
IOS源码之OC相册,可以循环查看图片
#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
IOS,Objective-C,相册功能的实现。
#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-常见问题
iOS-常见问题问题一:我们在写程序的时候,屏幕的宽高我们不能写固定,例如写成320,480之类的,因为我们要适配不同的手机。常用的一种方法是在 .pch文件中设置宽高,因为.pch是一个预编译文件,在全局都能访问到。#define ScreenHeight [UIScreen mainScreen...
分类:移动开发   时间:2016-01-09 12:23:29    阅读次数:151
254条   上一页 1 ... 6 7 8 9 10 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!