随笔分类 -  iOS - UI

iOS - UI 内容
摘要://声明对象 @property (nonatomic,strong) UIActivityIndicatorView *activityindicator; self.activityindicator = [[UIActivityIndicatorViewalloc] initWithFrame 阅读全文
posted @ 2017-04-12 14:42 NextXavier 阅读(123) 评论(0) 推荐(0)
摘要://声明对象 @property (nonatomic,strong) UISegmentedControl *segmentedcontrol; //标题 NSArray *segmentArry = [NSArray arrayWithObjects:@"中国",@"美国",@"大不列颠英国", 阅读全文
posted @ 2017-04-11 15:51 NextXavier 阅读(1238) 评论(0) 推荐(0)
摘要://声明对象 @property (nonatomic,strong) UIAlertController *alertcontroller; //创建提示窗口 Title:标题 message:提示内容 Style:风格 self.alertcontroller = [UIAlertControl 阅读全文
posted @ 2017-04-11 11:01 NextXavier 阅读(674) 评论(0) 推荐(0)
摘要://声明对象 @property (nonatomic,strong) UIProgressView *progressview; self.progressview = [[UIProgressView alloc] init]; //设置属性 self.progressview.backgrou 阅读全文
posted @ 2017-04-10 16:36 NextXavier 阅读(153) 评论(0) 推荐(0)
摘要://声明对象 @property (nonatomic,strong) UISlider *slider; self.slider = [[UISlider alloc] init]; //设置属性 self.slider.backgroundColor = [UIColor grayColor]; 阅读全文
posted @ 2017-04-10 15:42 NextXavier 阅读(198) 评论(0) 推荐(0)
摘要://声明对象 @property (nonatomic,strong) UISwitch *switchX; self.switchX = [[UISwitchalloc] init]; self.switchX.frame = CGRectMake(self.view.frame.size.wid 阅读全文
posted @ 2017-04-10 14:32 NextXavier 阅读(117) 评论(0) 推荐(0)
摘要://声明UILabel对象 @property (nonatomic,strong) UILabel *label; // 初始化 self.label = [[UILabel alloc] init]; self.label.backgroundColor = [UIColor clearColo 阅读全文
posted @ 2017-04-10 09:47 NextXavier 阅读(136) 评论(0) 推荐(0)
摘要://声明对象@property (nonatomic,strong) UIPageControl *pagecontrol; //初始化 self.pagecontrol = [[UIPageControl alloc] init]; self.pagecontrol.backgroundColor 阅读全文
posted @ 2017-04-08 10:53 NextXavier 阅读(172) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。
posted @ 2017-04-07 16:12 NextXavier 阅读(6) 评论(0) 推荐(0)
摘要://声明 UIScrollView-》#27932A #952775 #602AAB @property (nonatomic,strong) UIScrollView *scrollview; //声明 UIImageView @property (nonatomic,strong) UIImag 阅读全文
posted @ 2017-04-07 14:13 NextXavier 阅读(429) 评论(0) 推荐(0)
摘要:// // ViewController.m // UIView // // Created by sougu on 2017/3/13. // Copyright © 2017年 NextXavier. All rights reserved. #import "ViewController.h" 阅读全文
posted @ 2017-03-13 15:48 NextXavier 阅读(205) 评论(0) 推荐(0)