摘要: UITextView * txtView = [[UITextView alloc] initWithFrame:CGRectMake(10, 50, 200, 50)]; txtView.backgroundColor = [UIColorclearColor]; txtView.layer.masksToBounds = YES; txtView.layer.borderWidth = 1.0f; txtView.layer.borderColor = [UIColorredColor].CGColor; [self.view addSubview:txtView]; 阅读全文
posted @ 2014-03-14 15:31 Dadada胖纸er 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 今天使用XCode5创建新项目的时候发现无法修改Deployment Target,只能选择iOS7,谷歌了一下找到了答案,在这里分享给大家:)这是由于XCode5默认会选择在64位的环境下运行,在Build Settings中修改Architectures为Standard architectures(armv7, armv7s),回到General中即可修改Deployment Target为4.3以上的版本。转自:http://blog.csdn.net/zhaoxy_thu/article/details/13378173 阅读全文
posted @ 2014-03-14 10:41 Dadada胖纸er 阅读(291) 评论(0) 推荐(0) 编辑