11
Koddaki bir UIButton için görüntü ayarlama
Kodda bir UIButton için resmi nasıl ayarlarsınız? Bu bende var: 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]; ancak görüntüyü neyin ayarlayacağını görmeyin.
197
ios
objective-c
iphone
ipad
uibutton