Tagged Questions

The UIActionSheet class of the Apple iOS can be used to present to user a modal view with a descriptive text and some buttons the user can choose from. An action sheet displays a set of choices related to a task the user initiates.

learn more… | top users | synonyms

17
votes
2answers
3k views

Create UIActionSheet 'otherButtons' by passing in array, not varlist

I have an array of strings that I want to use for button titles on a UIActionSheet. Unfortunately, the otherButtonTitles: argument in the method invocation takes a variable length list of strings, not ...
10
votes
5answers
12k views

Accessing UIPopoverController for UIActionSheet on iPad

On the iPad, one can show a UIActionSheet using -showFromBarButtonItem:animated:. This is convenient because it wraps a UIPopoverController around the action sheet and it points the popover's arrow to ...
9
votes
3answers
3k views

last Button of actionsheet does not get clicked

I have used an actionsheet in my project and when it appears it show all buttons but last (4th) button does not responds to my click(only it's half part responds).. I know the reason it is because i ...
9
votes
2answers
4k views

Retain/release pattern for UIPopoverController, UIActionSheet, and modal view controllers?

I'm somewhat unclear on the object ownership patterns required for the following instances. When my UIViewController presents a popover controller, an action sheet, or another view controller as ...
6
votes
2answers
3k views

UIDatePicker in PopoverView in iPad

I have an iPad specific application running iOS 3.2.2 which displays a settings view in a ui popover. This all renders great, but now I'm trying to get a date picker to render inside the view and not ...
6
votes
2answers
925 views

UIActionSheet Change arrow position?

To show an UIActionSheet on the iPad I did this [actionSheetX showFromRect:RectX inView:myView animated:YES]; And the arrow of the popover is Down, can'I change this position to Left, Up, etc? Like ...
6
votes
3answers
420 views

How do you remove one-time-use class variables from Objective-C code?

I'm writing some Objective-C code and I've frequently hit the situation where I have to use a class variable to store a value for one time use. After consuming it I no longer need it. To me, storing ...
5
votes
4answers
611 views

How to make a uiactionsheet dismiss when you tap outside eg above it?

How do i make a uiactionsheet dismiss when you tap outside eg above it? This is for iPhone. Apparently the ipad does this by default (I may be wrong).
5
votes
1answer
5k views

Using UIActionSheet on iPad

Apple's documentation for the UIActionSheet is causing me confusion. First off, in the iPad Human Interface Guidelines, it says : To learn more about using an action sheet in your code, see “Using ...
4
votes
1answer
2k views

UIDatePicker in UIActionSheet on iPad

In the iPhone version of my app, I have a UIDatePicker in a UIActionSheet. It appears correctly. I am now setting up the iPad version of the app, and the same UIActionSheet when viewed on the iPad ...
4
votes
4answers
4k views

Issue with UIActionSheet

When I run my app and I click button for actionsheet appears this: Presenting action sheet clipped by its superview. Some controls might not respond to touches. On iPhone try -[UIActionSheet ...
4
votes
1answer
461 views

Wrong UIActionSheet layout in popover

I’ve got an UIActionSheet with a single button that I show in a popover. In landscape mode there is a plenty of space around the popover, so that it displays with an arrow in the middle and everything ...
4
votes
5answers
5k views

Action sheet doesn't show Cancel button on iPad

On the iphone, this code shows the cancel button: - (IBAction)buttonPressed { UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Are you sure?" ...
4
votes
2answers
4k views

How do I code a green button in UIActionSheet?

I am using the code: { randomstatus=0; msg=[[NSString alloc]initWithFormat:@"Good job, do you want to continue?"]; UIActionSheet *actionSheet=[[UIActionSheet ...
3
votes
2answers
270 views

MonoTouch for iPad: How to show a popup dialog?

I just started learning developing an application (primarily) for iPad using MonoTouch. Maybe because of my many years experience in C# world, it makes my switch very difficult, and I feel stupid ...
3
votes
2answers
387 views

How do you dismiss a UIActionSheet from the App Delegate?

I'm trying to dismiss a UIActionSheet from the app delegate so that it doesn't show again when you return from background. I've tried to dismiss the action sheet from the viewDidUnload or ...
3
votes
1answer
299 views

Adding Image to UIActionSheet UIButton and App Approval

I want to submit an iPhone application, and I am concerned about the following line of code which add an Image to the UIActionSheet Button: UIActionSheet *actionSheet = [[UIActionSheet alloc] ...
3
votes
2answers
1k views

Adding Images to UIActionSheet buttons as in UIDocumentInteractionController?

Is it possible to add an image to the buttons of the UIActionSheet as in UIDocumentInteractionController? If so; how? Thanks.
3
votes
4answers
316 views

UIActionSheet in Landscape has incorrect buttonIndicies

I have an action sheet that is causing me grief on the iphone in Landscape orientation. Everything displays just fine, but in Landscape, the first real button has the same index as the cancel button ...
3
votes
3answers
897 views

iPad's UIActionSheet showing multiple times

I have a method called -showMoreTools: which is: - (IBAction) showMoreTools:(id)sender { UIActionSheet *popupQuery = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:nil ...
3
votes
3answers
1k views

adding view into action sheet

Can I add my custom UIViewController into the ActionSheet ? thanks
3
votes
3answers
901 views

UIActionSheet buttonIndex values faulty when using more than 6 custom buttons?

I have discovered a strange problem when using UIActionSheet on the iPhone (iOS 4.2). Consider this code: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary ...
3
votes
1answer
407 views

UIActionSheet long list behavior changed in 4.2?

I am seeing some changed behavior in iOS 4.2 with UIActionSheet. I can't find anything in Apple's developer docs or forums about it, so I'm not sure how to resolve it. In my list app, I present the ...
3
votes
3answers
980 views

iPhone: detecting if a UIAlert/UIActionSheet are open

In my iOS application, I have a timer firing up, and when it fires, I need to be able to detect whether there's an Alert (UIAlertView) or an Action Sheet (UIActionSheet) open. One way would be to ...
3
votes
1answer
123 views

iPhone, object on a picket sheet how do I detect when the action sheet is closed / dismissed?

How can I determine when an action sheet has closed or has been dismissed ? I've followed this topic http://stackoverflow.com/questions/349858/fitting-a-uidatepicker-into-a-uiactionsheet and added a ...
3
votes
3answers
661 views

How does the overall view hierarchy change when using UIKit view manipulations?

I've been trying to figure out what happens in the view hierarchy when methods like pushViewController:animated, presentModalViewController:animated, and tab switches in UITabBarViewController are ...
3
votes
3answers
2k views

EXC_BAD_ACCESS when calling pushViewController

I have a UITableView inside a UITabBarController. When I'm calling [[self navigationController] pushViewController:myViewController animated:YES]; there is no problem. but, When I'm calling the ...
3
votes
2answers
1k views

iphone - weird bug between UIActionSheet and UITabBar

hey In my tabbar app, i bring up a UIActionsheet from an action, called from a button in a navigation controller title bar. The UIActionsheet functions as per normal, except for the bottom half of ...
3
votes
2answers
2k views

How to display UIActionSheet just below top navigation status bar on iPhone

I would like to display an action sheet sliding from just below the very top status bar. When I use the navigationBar as the view to show in, the sheet is still displayed at the bottom of the ...
2
votes
1answer
32 views

UIActionSheet buttonIndex

I have a UIActionSheet in my app that defaults to having 4 buttons. If a user customises an image the action sheet gains an extra 5th button allowing the user to reset this image. I'm using this ...
2
votes
1answer
107 views

Forcing UIActionSheet to use a specific orientation

My app has one view controller that cannot change orientation. Think of it as a playing field that needs to stay fixed in place. I now want to put up a UIActionSheet, but given the way the user is ...
2
votes
1answer
118 views

Disabling ActionSheet dismiss on ipad when user touches outside popover

I have an actionsheet showing in my app and it all work fine on the iphone. However, on ipad it automatically creates the actionsheet within a popover and I can't get it to disable the dimissing whe ...
2
votes
2answers
184 views

How can I sent an array of strings into an UIActionSheet varargs init method?

I have an action sheet with options that vary depending on the circumstances. There are enough different button titles that I would like to construct an array of those button titles first, but I ...
2
votes
2answers
159 views

ActionSheet within UISplitViewController acts different in Portrait Mode than Landscape Mode

I created a new application using the Split View-based Application template. I then added an Action Button to the rootViewController navigation controller called actionButton. When the button is ...
2
votes
2answers
165 views

How to change UIActionSheet view?

As I observed that UIActionSheet is always appearing from down side in iPhone, but in some app, as I saw in AlarmClock, then two button became visible, one from upside and second from downside of ...
2
votes
2answers
235 views

Dismiss the keyboard if action sheet is going to popup

I have a UIDatePickerView inside UIActionSheet as a input to the UITextField. When focusing on UITextField UIActionSheet will popup instead of Keyboard. When clicking on the done button in the ...
2
votes
1answer
315 views

Creating two action sheets in one view

I created two action sheets in one view. There are two buttons, each will initiate one action sheet. The problem: when i press on first choice in both action sheets the same action is triggered. ...
2
votes
1answer
562 views

Problems with size of UIActionsheet in UIPopoverController

I've added an UIActionsheet with a dynamically number of buttons to a UIPopovercontroller, that appears if the popover is shown. My problem is that if the number of buttons is to hight the ...
2
votes
2answers
333 views

How to change sequence of button in UIActionsheet in iPhone?

I have 4 buttons in UIActionsheet from Top to Bottom Sequence is as below 1. Remove existing photo - Destructive button title 2. take picture - other button title 3. choose from library - other button ...
2
votes
1answer
146 views

How to widen UIActionSheet to fit the text in iPad?

I'm using UIActionSheet in a landscape mode application in iPad. Some of my button's texts don't fit the width and they're cropped from the end. In iPhone this is handled and my action sheet buttons ...
2
votes
3answers
147 views

Find Parent UIActionSheet

I have a UIActionSheet to select a time for use in my app. Selecting the time works fine, but I can't find a way to hide the action sheet when the "Done" button is clicked. The code I have is: ...
2
votes
2answers
357 views

Correct way to address top UITabBarController view for showFromTabBar

Main app delegate has a UITabBarController called tabBarController (NewsUKDelegate.m) The first tab loads a UIViewController which turns adds a UITableView (FirstViewController.m) The UITableView ...
2
votes
1answer
1k views

UIActionSheet on iPad is not showing Cancel Button

I am working on iPad Application, SDK iOS 4.3 I am trying to show Cancel Button in the UIActionSheet but it's not showing, here is my code: UIActionSheet *actionSheet = [[UIActionSheet alloc] ...
2
votes
3answers
308 views

Obj-C, why is my UIActionSheet Cancel button hard to tap?

I've noticed in my app that my cancel button is hard to tap, it seem like the hit area is not in the center. How do I fix this ? Heres my code... UIActionSheet *actionSheet = [[UIActionSheet alloc] ...
2
votes
2answers
70 views

Objective C: What is the impact of not including <UIActionSheetDelegate> protocol in header file?

I am implementing a action sheet and found that the code works even without including the protocol in the header file. Is there a impact in no including it? Thanks Zhen
2
votes
1answer
474 views

iPad app displays Actionsheet with arrow direction down instead up

When displaying an actionSheet at any point in a view it displays an arrow with direction down (below the actionsheet) even though the actionSheet would have enough space in the view to display an ...
2
votes
2answers
791 views

Problems with Cancel Button and UIActionSheet

How do I determine if the cancel button was pressed on a UIActionSheet? My UIActionSheet is set up like this: -(IBAction)fileButtonPressed { UIActionSheet *mymenu = [[UIActionSheet alloc] ...
2
votes
1answer
2k views

how to enable text input in UITextField which is in UIActionSheet?

I am creating textField in UIActionsheet, but I can't input text, can any one has idea about it ???? my coding is as follow -(void)commentsMethod: (id) sender { //setup UITextField for the ...
2
votes
3answers
604 views

iOS Getting ActionSheet-Like buttons

I have an iOS iPhone app for which I need the Action Sheet-style buttons outside of an action sheet. I am talking about these buttons: I've seen the eBay iPhone app do that and then have that ...
2
votes
4answers
608 views

programmatically stop uipickerview animation on iphone

I have a UIActionSheet containing a picker and a UIToolbar. On the UIToolBar there is a save button. However, some of my users reported pressing the save button before the UIPickerView stops spinning ...

1 2 3 4 5 7