すべての「その他」ボタンにアクションを追加するにはどうすればよいですか?
これは、アラートを表示する方法です。
- (IBAction)testCalAdd:(id)sender {
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Select week"
message:@"Which week will you be attending?"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"AIG Thermal $1 Million Grand Prix", @"DC VII", @"DC VI", @"DC V", @"DC IV", @"DC III", @"DC II", @"DC I", nil];
[alert show];
}