码迷,mamicode.com
首页 >  
搜索关键字:uiscreen    ( 254个结果
UILable  /  UITextField  /   UIButton
// 获取屏幕大小的viewUIView *contentView = [[UIView alloc] initWithFrame:[UIScreen mainScreen].bounds]; // bound是个矩形 bounds类型是CGRect#pragma mark - UILable知识点...
分类:其他好文   时间:2015-12-06 00:11:02    阅读次数:238
UIVIew之霓虹灯实现
//// AppDelegate.m// NiHongPractice//#import "AppDelegate.h"#define kColorValue arc4random_uniform(256) / 255.0#define kScreenWidth [UIScreen mainSc.....
分类:其他好文   时间:2015-12-06 00:02:18    阅读次数:167
设置ios中imageView图片自适应,
UIIimageView *imageView = [UIImageView alloc]init];[imageView setContentScaleFactor:[[UIScreen mainScreen] scale]];imageView.contentMode = UIViewConte...
分类:移动开发   时间:2015-12-04 12:25:34    阅读次数:181
进击的UI-----------------UIWindow&UIView&UILabel
1.UIWindow定义初始:1??:初始化窗口:self.window = [[[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]]autorelease];2??:设置背景色:self.window.backgroundColo...
分类:Windows程序   时间:2015-11-21 18:13:40    阅读次数:195
Objective-C-修改TabBarController的图标颜色及字体颜色(选中及未选中)
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; self.window.backgroundColor = [UIColor whiteColor];UITabBarController *m....
分类:其他好文   时间:2015-11-20 21:30:59    阅读次数:158
UIScrollView滚动视图
一、基本知识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
判断当前iOS设备的方法
1.在程序中涉及到全屏的宽高的时候,初始化的时候,代码中不要写320和480#define Screen_height [[UIScreen mainScreen] bounds].size.height#define Screen_width [[UIScreen mainScreen] boun...
分类:移动开发   时间:2015-11-16 10:33:35    阅读次数:143
UICollectionView基础用法
#import?"ViewController.h" #define?kScreenSize?[UIScreen?mainScreen].bounds.size //遵守协议 @interface?ViewController?()?<UICollectionViewDataSource,UICollectionViewDelegate> { ????UIC...
分类:其他好文   时间:2015-11-09 14:12:16    阅读次数:190
关于[[UIScreen mainScreen] bounds]和applicationFrame区别
可能有人对[[UIScreen mainScreen]bounds]和[UIScreen mainScreen]applicationFrame]的区别不是很了解,其实很简单.bounds就是屏幕的全部区域,包括状态栏.而applicationFrame指的是app显示的区域,不包括状态栏.如果你讲...
分类:移动开发   时间:2015-11-03 00:44:19    阅读次数:276
UIScrollView语法用法样例
#import?"RootViewController.h" #define?kScreenSize?[UIScreen?mainScreen].bounds.size #define?kPrintDebug?NSLog(@"%s",__func__) @interface?RootViewController?()<UIScrollViewDelegate> { ?...
分类:其他好文   时间:2015-10-31 13:09:10    阅读次数:175
254条   上一页 1 ... 8 9 10 11 12 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!