
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 · 364 阅读 · 0 评论 -
UIView
UIView原创 2016-04-30 16:40:37 · 359 阅读 · 0 评论 -
UILabel(标签栏)、UIAlertView(警告栏)、UIActionSheet(上拉菜单)
UILabel、UIAlertView、UIActionSheet原创 2016-04-30 19:03:26 · 439 阅读 · 0 评论 -
UIButton、UITextField、UISlider、UISwitch、UISegmentedControl
UIButton、UITextField、UISlider、UISwitch、UISegmentedControl原创 2016-05-01 11:32:30 · 409 阅读 · 0 评论 -
UINavigationController、UITabBarController
UINavigationBar(导航栏)@interface UINavigationController : UIViewController//navigationBar是UINavigationController的一个属性@property(nonatomic,readonly) UINavigationBar *navigationBar;//是否隐藏@property(n原创 2016-06-28 15:32:47 · 432 阅读 · 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 · 445 阅读 · 0 评论 -
UITableView(表视图)
UITableView@interface UITableView : UIScrollView //表视图风格typedef NS_ENUM(NSInteger, UITableViewStyle) { UITableViewStylePlain, 平铺 UITableViewStyleGrouped 成组};//分割线颜色@propert原创 2016-05-05 10:44:00 · 348 阅读 · 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 · 318 阅读 · 0 评论