Proper way to exit iPhone application?

前端 未结 25 2742
难免孤独
难免孤独 2020-11-22 01:54

I am programming an iPhone app, and I need to force it to exit due to certain user actions. After cleaning up memory the app allocated, what\'s the appropriate method to ca

25条回答
  •  太阳男子
    2020-11-22 02:35

    Its not really a way to quit the program, but a way to force people to quit.

    UIAlertView *anAlert = [[UIAlertView alloc] initWithTitle:@"Hit Home Button to Exit" message:@"Tell em why they're quiting" delegate:self cancelButtonTitle:nil otherButtonTitles:nil];
    [anAlert show];
    

提交回复
热议问题