Reputation: 281
I have made a custom control in my application. It is like a combo box. when a button is clicked a table view will appear. user selects a row from that table and the value will be displayed on either textfield or on the button's lable. Now i wanted to know, if it is okay if i make a custom control like this in iphone. Or will it be rejected when i submit it to app store??? i feel like i am taking a risk here???
Upvotes: 0
Views: 397
Reputation: 58478
This is perfectly ok, and in most cases, encouraged.
The only argument against it would be that it might have been easier and less work to just use a normal button and a UIPickerView
, but that is entirely subjective and completely up to you.
Upvotes: 3