Closed xctom closed 9 years ago
As a best practice (and to save yourself work), create a single custom view that serves as your alert view. Then show this one with different messages as each of the three different places you need in the app. It should look something like this:
myCustomAlertView *instructions = [myCustomAlertView alloc] initWithMessage:@"Play this game...."];
myCustomAlertView *gameOver = [myCustomAlertView alloc] initWithMessage:@"Game Over"];
I remember professor said in class that we only need to customize only one of three alertview. But I found it in requirement that all three should be customized. Can I just customized info sheet?