Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 03-20-2011, 01:35 PM   #1 (permalink)
Registered Member
 
Join Date: Mar 2011
Posts: 60
nathanl1192 is on a distinguished road
Default UIAlertview button actions.

I have a UIAlertview with a few buttons, but I do not know how to add actions to each of them buttons. They will load web pages using this code:

Code:
[webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"WEBSITEHERE"]]]
Thanks in advance!
nathanl1192 is offline   Reply With Quote
Old 03-20-2011, 04:03 PM   #2 (permalink)
Registered Member
 
Join Date: Jan 2011
Posts: 149
crashmonkey is on a distinguished road
Default

First, review the Apple docs for the UIAlertView Class Reference.

The important point to know is that you must use a delegate method to execute any custom actions from the AlertView other than the default "dismiss" or "cancel" methods.

Your current viewController in which the AlertView is created can be the delegate. To implement that just assign it to be the delegate in the init method when you create the alertView:

Code:
alert_view = [[UIAlertView alloc]initWithTitle:@"Title"
			message:@"message"
			delegate:(UIViewController *)self 
                        cancelButtonTitle:@"title" 
			otherButtonTitles:@"title"];
The reference to "self" as the delegate refers to the viewController from which this code is being executed.

In the delegate viewController you then must add the delegate protocol declaration in the viewController .h file.
Code:
@interface myViewController : UIViewController <UIAlertViewDelegate>{
Then in the viewController .m file you must include the alertView delegate method:
Code:
-(void)alertView:(UIAlertView *)alert_view didDismissWithButtonIndex:(NSInteger)button_index
In this method you can define custom actions to execute after acknowledging or dismissing the alertView. The key to this method is that you refer to specific dismiss buttons by index #.
The buttons are indexed by integers starting at 0. If you have 3 buttons then the 3rd button is index 2.
You use this one method for several different alertViews since the alertView and button pressed is passed to the method when dismissed.
Then in the dismiss method include your button specific actions as conditional statements:
Code:
if(button_index == 0){
...;
}
if(button_index ==1){
...;
}
If I left anything out you should be able to find it in the documentation.

Last edited by crashmonkey; 03-20-2011 at 04:13 PM.
crashmonkey is offline   Reply With Quote
Reply

Bookmarks

Tags
actions, button, function, ibaction, uialertview

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 350
10 members and 340 guests
condor304, Creativ, Domele, dreamdash3, laureix68, LEARN2MAKE, michelle, mistergreen2011, Sami Gh, tinamm64
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,661
Threads: 94,119
Posts: 402,896
Top Poster: BrianSlick (7,990)
Welcome to our newest member, tinamm64
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 01:31 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0