How to restart app in objective c?
Answer / Vivek Kumar Dubey
"To restart an app programmatically in Objective-C, you can call the `terminate:` method on UIApplication. However, it's important to note that this action requires user confirmation since it will close the current app. Here's an example:nn```objective-cn[[UIApplication sharedApplication] terminate:nil];n```
| Is This Answer Correct ? | 0 Yes | 0 No |
How declare methods in objective c?
How to convert string to nsnumber in objective c?
What is a block objective c?
Explain what is protocol in objective-c?
Explain the way messaging works in objective-c?
How to convert data to string in objective c?
How to create thread in objective c?
What is parsing? Mention which class can you use for parsing of xml in iphone?
What is m file?
Is python static or dynamic?
What is an example of tangible property?
Is objective c superset of c?