I created an action sheet, but the problem is that the delegate method is not called
myActionSheet = UIActionSheet() myActionSheet.addButtonWithTitle(\"
You never set the action sheet's delegate:
myActionSheet = UIActionSheet() myActionSheet.delegate = self