-
use core data 苹果自带的数据库查看全部
-
singleview查看全部
-
mvc 提高重用性 降低耦合性查看全部
-
ios系统讲解查看全部
-
mvc查看全部
-
谢谢查看全部
-
好视频啊,学到知识了查看全部
-
asda查看全部
-
iphone各机型的分辨率查看全部
-
[UIScreen MainScreen]查看全部
-
bounds为边框大小,xy值永远为0查看全部
-
存储origin的为CGPoint,存储size的为CGSize,两个分别都是枚举类型,数值类型为CGFloat查看全部
-
view1.frame.origin.x, view1.frame.origin.y, view1.frame.size.width, view1.frame.size.height. frame和bounds两个都是CGRect 类型,两个枚举类型,只有两个属性,分别为origin和size,这两个也分别为枚举类型,属性分别为xy值和width,height值查看全部
-
能把iOS拼写对吗?查看全部
-
UIView *backView=[[UIView alloc] init]; CGSize size=[[UIScreen mainScreen] bounds].size; backView.frame=CGRectMake(size.width/2-25, size.height/2-25, 50, 50); backView.backgroundColor=[UIColor yellowColor]; [self.view addSubview:backView]; //父view 开启子view自适应 //backView.autoresizesSubviews=YES; UIView *topView=[[UIView alloc] init]; topView.frame=CGRectMake(10, 10, 30, 30); topView.backgroundColor=[UIColor whiteColor]; //topView.autoresizingMask=UIViewAutoresizingFlexibleBottomMargin|UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin|UIViewAutoresizingFlexibleTopMargin; topView.autoresizingMask=UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth; [backView addSubview:topView];查看全部
举报
0/150
提交
取消