I have 3 types of browsing in my applications. 'WonAlert' 'LostAlert' 'NagAlert'
I am implementing this to give them action.
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
This worked well when I only had “wonAlert” and “lostAlert”, they had a dismissal and a “learn more” button that brought them to Wikipedia, now I want a nag warning to send them to the app store.
how can I do this so that the method described above knows from which warning the answer appears, or something like that?
Cheers Sam
source
share