iOS UIView&UIViewController及子类
KumaHuang
这个作者很懒,什么都没留下…
展开
-
UIView增加边框
self.content_text.layer.cornerRadius = 3.0; self.content_text.layer.masksToBounds = YES; self.content_text.layer.borderWidth = 1.0; self.content_text.layer.borderColor = [[UIColor colorWit原创 2014-07-21 11:15:17 · 464 阅读 · 0 评论 -
UINavigationController使用详解
1、navigationItem 我们都知道navigationItem是UIViewController的一个属性,这个属性是为UINavigationController服务的。文档中是这么解释的“The navigation item used to represent the view controller in a parent’s navigation bar. (read-转载 2014-07-02 15:28:08 · 362 阅读 · 0 评论 -
NavigationBar的隐藏方法
隐藏NavigationBar的方法转载 2014-07-03 09:59:43 · 497 阅读 · 0 评论 -
弹出新ViewController的方法
1.使用 UINavigationController转载 2014-07-04 11:04:39 · 567 阅读 · 0 评论 -
UIButton的简单用法
//login button // .h 中定义 UIButton *_loginBtn; @property (strong,nonatomic)UIButton *loginBtn; // .m 中实现设置按钮 @synthesize loginBtn = _loginBtn;//使用备份变量名 //设置按钮的转载 2014-07-07 10:40:52 · 390 阅读 · 0 评论