我是IOS开发的新手。我有一个带有“创建”和“取消”两个按钮的视图,但它们没有突出显示。它们出现在允许长按复制/杯子/粘贴的pdf顶部)。实际上“创建”突出显示非常快,但取消根本不会改变状态。知道可能是什么原因造成的。
-(IBAction)create:(id)sender{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Name your object" message:@"" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Save",nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];
}
-(IBAction)cancel:(id)sender{
[self.view removeFromSuperview];
[[NSNotificationCenter defaultCenter] postNotificationName:kExitAnnotationView object:nil ];
}