UI控件
Apel0811
这个作者很懒,什么都没留下…
展开
-
UIWindow
1 window的创建(在AppDelegate。m里面) //window的创建,跟屏幕尺寸一样大小 self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; //设置window的底色 self.window.backgroundColor = [UIColor whiteColor]; //原创 2016-04-21 17:16:00 · 346 阅读 · 0 评论 -
UIView
UIView原创 2016-04-30 16:40:37 · 335 阅读 · 0 评论 -
UILabel(标签栏)、UIAlertView(警告栏)、UIActionSheet(上拉菜单)
UILabel、UIAlertView、UIActionSheet原创 2016-04-30 19:03:26 · 417 阅读 · 0 评论 -
UIButton、UITextField、UISlider、UISwitch、UISegmentedControl
UIButton、UITextField、UISlider、UISwitch、UISegmentedControl原创 2016-05-01 11:32:30 · 390 阅读 · 0 评论 -
UINavigationController、UITabBarController
UINavigationBar(导航栏) @interface UINavigationController : UIViewController //navigationBar是UINavigationController的一个属性 @property(nonatomic,readonly) UINavigationBar *navigationBar; //是否隐藏 @property(n原创 2016-06-28 15:32:47 · 410 阅读 · 0 评论 -
UITabBarController(标签栏控制器)
UIViewController @interface UIViewController (UITabBarControllerItem) @property(null_resettable, nonatomic, strong) UITabBarItem *tabBarItem; @property(nullable, nonatomic, readonly, strong) UITabB原创 2016-05-03 18:56:43 · 415 阅读 · 0 评论 -
UITableView(表视图)
UITableView @interface UITableView : UIScrollView //表视图风格 typedef NS_ENUM(NSInteger, UITableViewStyle) { UITableViewStylePlain, 平铺 UITableViewStyleGrouped 成组 }; //分割线颜色 @propert原创 2016-05-05 10:44:00 · 323 阅读 · 0 评论 -
UIWebView
//创建和视图控制器视图大小一样的web视图 UIWebView *webView = [[UIWebView alloc] initWithFrame:self.view.bounds]; [self.view addSubview:webView]; //加载本地HTML文件 //获取HTML文件地址 NSString *filePath = [[NSBu原创 2016-05-19 14:56:15 · 303 阅读 · 0 评论