上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页
摘要: 1 @synthesize stepper = _stepper; 2 @synthesize segContol = _segContol; 3 4 - (void)viewDidLoad { 5 [super viewDidLoad]; 6 7 _stepper = [[UIStepper alloc]init]; 8 9 _stepper.f... 阅读全文
posted @ 2017-09-25 14:22 vector11248 阅读(215) 评论(0) 推荐(0)
摘要: <!-- <input type="button" id = "but" value="按钮" /> --> <!-- <form id = "people" action=""> <p> <input type="submit" value="Submit" /><br /> FirstName 阅读全文
posted @ 2017-09-23 12:18 vector11248 阅读(227) 评论(0) 推荐(0)
摘要: 1 #import "ViewController.h" 2 #import "ViewController2.h" 3 4 @interface ViewController () 5 6 @end 7 8 @implementation ViewController 9 10 @synthesize slider = _slider; 11 @synthesize ... 阅读全文
posted @ 2017-09-23 11:41 vector11248 阅读(556) 评论(0) 推荐(0)
摘要: 1 //同步属性和成员变量 2 @synthesize mySwitch = _mySwitch; 3 4 - (void)viewDidLoad { 5 [super viewDidLoad]; 6 7 _mySwitch = [[UISwitch alloc]init]; 8 9 //宽高两个属性参数没有用,苹果自己定好了宽高 10 ... 阅读全文
posted @ 2017-09-23 10:26 vector11248 阅读(120) 评论(0) 推荐(0)
摘要: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. // self.view.backgroundColor = [UIColor orangeColor]; UIB... 阅读全文
posted @ 2017-09-22 20:50 vector11248 阅读(114) 评论(0) 推荐(0)
摘要: 1 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 2 // Override point for customization after application launch. 3 4 /... 阅读全文
posted @ 2017-09-21 21:46 vector11248 阅读(135) 评论(0) 推荐(0)
摘要: 1 //创建一个可以显示图片的按钮。 2 -(void)creatImageBtn{ 3 UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; 4 btn.frame = CGRectMake(100, 100, 100, 100); 5 UIImage *icon1 = [UIImage i... 阅读全文
posted @ 2017-09-21 10:57 vector11248 阅读(269) 评论(0) 推荐(0)
摘要: 1 -(void)creatUI{ 2 //创建一个UILabel 3 UILabel* label = [[UILabel alloc] init]; 4 5 label.text = @"Hello world"; 6 7 label.frame = CGRectMake(100, 200, 160, 40); 8 ... 阅读全文
posted @ 2017-09-21 10:04 vector11248 阅读(145) 评论(0) 推荐(0)
摘要: var p=0; var l=2; var str = new String("hello world"); document.writeln(str+"<br />"); document.writeln(str.replace(str.substr(p,l),strReverse(str.sub 阅读全文
posted @ 2017-09-13 17:22 vector11248 阅读(335) 评论(0) 推荐(0)
摘要: 主要原因是第一天晚上没有进入到Mac的root权限,所以一直就是权限不足。 今天我会了进入Mac root权限了,我一试就好了。 contab 定时命令: * * * * * /bin/sh /Users/wky/Desktop/backup.sh > /Users/wky/Desktop/back 阅读全文
posted @ 2017-09-10 15:49 vector11248 阅读(4105) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页