Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

iOS APP question

I have a special case that I want There is a Button , and when it onClicked,the APP will crash itself (on control)

Example

[btn addTarget:self action:@selector(noThisMethod) forControlEvents:UIControlEventTouchUpInside];

it's simply work ...『crash』 after this added in Code.

but....Will this app approve by apple? or will reject by apple?

if this will be reject by apple,is there any document maintained it?

Thanks for your great help!

share|improve this question
2  
No, apple wont approve it. Why do you want to crash an app in first place? developer.appcelerator.com/question/142194/… – ACB Dec 6 '12 at 9:16
possible duplicate of Proper way to exit iPhone application? – woz Dec 6 '12 at 19:12

closed as not a real question by Midhun MP, woz, Mac, CanSpice, Jeff Foster Dec 6 '12 at 20:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 2 down vote accepted

Quoting App Store Review Guidelines Section 2:

2.1 Apps that crash will be rejected

Furthermore -> http://stackoverflow.com/a/8491688/1155387

share|improve this answer

If they catch the crash then no they won't approve it.

If they miss it and don't get it to crash themselves then yes they will approve it.

share|improve this answer
But if My Button is named Stop APP? – Bird Hsuie Dec 6 '12 at 9:19
3  
You should never ever have a button like that, why would you even want a stop app button. – rckoenes Dec 6 '12 at 9:20
@BirdHsuie, You are not supposed stop the app like that. Mostly the user will delete the app if they see these crashes. Home button is there for minimizing the app and you can disable multitasking to make homebutton close the app. – ACB Dec 6 '12 at 9:21
You should not have a "stop app" button. If you put a "stop app" button in then Apple will almost certainly reject the app. In fact, the guidelines say that you should not have an "exit" or "close" button in the app. You have to deal with the Home button being pressed properly. – Fogmeister Dec 6 '12 at 9:23
1  
As mentioned by @Fogmeister here is the link to the apple HIG: Don’t Quit Programmatically – rckoenes Dec 6 '12 at 10:04
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.