1
2
3
4
5
6
7
| UIButton *button1 = [[UIButton alloc] initWithFrame:CGRectMake(0, 420, 160, 44)];
[button1 setTitle:@"进度填报" forState:UIControlStateNormal];
//button1.backgroundColor = [UIColor colorWithRed:(12/255) green:(22/255) blue:(32/355) alpha:1.0];
[button1.layer setBorderWidth:1.0];
[button1 setTitleColor:[UIColor lightGrayColor] forState:UIControlStateNormal];
[button1 addTarget:self action:@selector(gotorenewpage:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button1];
|