Three buttons in UILocalNotification alert box - iphone

In my iphone app i am implementing UILocalNotification. I want three buttons to be displayed in the alert box, which is displayed after the application closed through the UIlocalNotification invocation automatically. Thanks in advance.

You can't add one more button as in a UIAlertView. Since the notification alert is controlled by the OS, you can't customize it even though they are the same UI element.

Related

How can I open pop up ViewController in background mode - iOS

the app in background mode. when detect Ibeacon(https://developer.apple.com/ibeacon/) in background mode open popup.
I can display local-notification to the user when detect Ibeacon detect.
Is Apple allows to open popup in background-mode Swift?
lang - Swift
It is not possible as you need a ViewController or a NavigationController to show the AlertController from.
Also, it is not possible to show a ViewController from a background mode.
By now, your only option is to show LocalNotification or PushNotification and trigger the APP when the users clicks on it.
Check also this other ANSWER

Tab Bar with popup buttons iPhone

I want to have this type of bar at the bottom of the application and whenever a button is clicked new buttons should popup, which one of them when clicked should take me to its connected view
You shouldn't use Popup as control, I'll recommend you to use it like a notification as this is not Apple way of showing controls.
Here is a nice link from boctor iDev recipes.
You can find here custom UITabBar as well Notification
I would suggest you not to try customizing UITabbar. This will go against the normal behavior of UITabbar and Apple may reject your app for tampering with normal behavior.
You can try having a UIView with a set of buttons in them and bring the similar functionality as in your image.

Regarding Alert View

I am developing one iphone app, when i am clicking on a button i want to show one view which will take the user value for this i am using alert view instead of simple UIView so is it ok to use it b'cos,
I heard if i am using alert view then app will rejected on itunes is this true or we can use alert view.
Thanks & Regards,
Priyanka.
Hi Priyanka as per your problem it seems when the alert view is popped up you want to get some data from user right, so you can do that by taking textfield into uialert view and apple does allow what i said .
Hope this helps.

Can we add more than 2 buttons to alert view UILocalnotification dialog

How can we add more than close and view button to UILocalNotification AlertView dialog.
Please help!
As far as my knowledge this is not possible.
You can only change the text of buttons but cannot add any new button according Apple Guide lines.

add new window or view on the alertview click button in iphone

i juzz want to know that how we can add new window or view on the click of an alertview button in iphone?
I'm not sure you can do that from an AlertView since alertviews are meant only to display a specific alert not to take an action. I guess you better off using an ActionViews which is recommended by Apple if you want to perform a certain action from a model view in iphone.
Regards,