码迷,mamicode.com
首页 >  
搜索关键字:bounds    ( 955个结果
UITableView隐藏多佘部分方法
UITableView *tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain]; ? ? tableView.delegate = self; ? ? tableView.dataSource = self; ? ? tableView.sepa...
分类:其他好文   时间:2015-03-11 11:01:22    阅读次数:106
C# 获取屏幕的大小 SystemInformation类
C# 获取屏幕的大小WinForm:intiActulaWidth =Screen.PrimaryScreen.Bounds.Width;intiActulaHeight =Screen.PrimaryScreen.Bounds.Height ;WPF下的:doubledWidth = System...
分类:Windows程序   时间:2015-03-11 10:44:37    阅读次数:165
ios设备的尺寸不大敏感[UIScreen mainScreen
一直对ios设备的尺寸不大敏感,搞不清[[UIScreen mainScreen] bounds] 和[UIScreen mainScreen] applicationFrame]的区别,故总是心虚,现扫盲下:定义一个宏:?1#definePrintRect(frame)NSLog(@"X:%f,Y...
分类:移动开发   时间:2015-03-09 16:01:27    阅读次数:150
iOS iPad开发之横竖屏适配
1.做横竖屏适配的时,需要判断当前状态是横屏还是竖屏,有两种方法: 第1种:[UIScreen mainScreen].bounds.size.width == 768 优点:把这个抽成宏之后,随时可以判断横竖屏,#define Lanscape ([UIScreen mainScreen]...
分类:移动开发   时间:2015-03-06 20:44:45    阅读次数:190
集合视图 代码
#pragma mark - 设置自定义视图- (void)loadView{ self.rootView = [[[RootView alloc] initWithFrame:[UIScreen mainScreen].bounds] autorelease]; _rootView.backg.....
分类:其他好文   时间:2015-03-05 12:28:11    阅读次数:158
UI基础-UI基础控件(一)
一.UIView1.简单说明曾经有人这么说过,在iphone里你看到的,摸到的,都是UIView,所以UIView在iphone开发里具有非常重要的作用。2.常见属性1.frame 位置和尺寸(以父控件的左上角为原点(0, 0))2.center 中点3.bounds 位置和尺寸(以自己的左上角为原...
分类:其他好文   时间:2015-03-04 20:53:49    阅读次数:167
ios截屏使用的方法
-(UIImage*)getp_w_picpath{//截屏使用的方法CGSizep_w_picpathSize=[[UIScreenmainScreen]bounds].size;if(NULL!=UIGraphicsBeginImageContextWithOptions){UIGraphicsBeginImageContextWithOptions(p_w_picpathSize,NO,0);}else{UIGraphicsBeginImageContext(p_w_picpathSize..
分类:移动开发   时间:2015-03-02 11:24:27    阅读次数:148
Objective-C 截图
截取整个屏幕大小:1 UIGraphicsBeginImageContext(self.view.bounds.size);2 3 [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];4 5 UIImage * ...
分类:其他好文   时间:2015-03-01 15:37:01    阅读次数:143
autolayout之后获取uiview的frame
这个只要一行代码就搞定了。详细请看:In order to get the right frame/bounds of your UIImageView after resizing, you need first ask auto-layout to update that layout usin...
分类:其他好文   时间:2015-02-25 18:29:22    阅读次数:124
955条   上一页 1 ... 78 79 80 81 82 ... 96 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!