iOS开发一些方法

1、制造一个崩溃(例如用户不想更新时候)

1)abort();

2)exit(0);

2、优雅的回到主界面(返回app后还是原来界面)

oc)

[[UIApplication sharedApplication] performSelector:@selector(suspend)];

swift)

UIApplication.shared.perform(#selector(NSXPCConnection.suspend))

你可能感兴趣的:(iOS开发一些方法)