11
Đặt hình ảnh cho UIButton trong mã
Làm thế nào để bạn thiết lập hình ảnh cho một UIButton trong mã? Tôi có cái này: UIButton *btnTwo = [UIButton buttonWithType:UIButtonTypeRoundedRect]; btnTwo.frame = CGRectMake(40, 140, 240, 30); [btnTwo setTitle:@"vc2:v1" forState:UIControlStateNormal]; [btnTwo addTarget:self action:@selector(goToOne) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:btnTwo]; nhưng không thấy những gì sẽ thiết lập hình ảnh cho nó.
196
ios
objective-c
iphone
ipad
uibutton