11
การตั้งค่าภาพสำหรับ UIButton ในรหัส
คุณจะตั้งค่าภาพสำหรับรหัส UIB ได้อย่างไร? ฉันมีสิ่งนี้: 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]; แต่ไม่เห็นสิ่งที่จะตั้งค่าภาพสำหรับมัน
197
ios
objective-c
iphone
ipad
uibutton