uiactionsheet Questions

8

Solved

I have created a UIActionSheet UIActionSheet * action = [[UIActionSheet alloc]initWithTitle:@"" delegate:self cancelButtonTitle: @"cancel" destructiveButtonTitle: @"OK" otherButtonTitles: nil]...
Caritta asked 29/2, 2012 at 9:44

10

Due to strange behavior of UIActionSheet in iOS 8, I have implemented UIAlertController with UIAction as buttons in it. I would like to change the entire background of the UIAlertController. But I ...
Petronille asked 11/11, 2014 at 11:8

6

Solved

Anyone is getting this message while trying to show UIActionSheet from popover? Your application has presented a UIAlertController () of style UIAlertControllerStyleActionSheet. The modalPresentat...

7

Solved

I am trying to adapt my application for iOS 7. The issue I am having is I can not change the tint color of some controls. I did add self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mai...
Frumenty asked 15/11, 2013 at 6:38

4

Solved

This is the code I am writing to display UIActionSheet. actionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"updateresponseforrecurring", nil) delegate:self cancelButtonTitle:NS...
Barbicel asked 19/10, 2015 at 13:25

6

I am maintaining an old iOS project which based on SDK 6.0. A method on this project called -(void) showComboBox:(UIView*)view:withOptions:(NSDictionary*)options is used to show a combo box. To...
Ibiza asked 24/12, 2014 at 6:35

7

Solved

Is it possible to create an ActionSheet that have a label between two buttons like this image?
Mady asked 30/7, 2013 at 11:55

2

I am trying to create an UIAlertAction that has black color text for the first button and blue for the second. If I change the tint then all go black but i can't change the first button to black wi...
Gynandry asked 14/3, 2017 at 18:8

3

Solved

Previous to iOS8 we used the UIActionSheet for showing alert and now we need to use the UIAlertController. When we used the UIActionSheet we could easily handle situations where the user clicked o...
Arboreous asked 23/8, 2014 at 21:54

9

Solved

So I noticed that in iOS8 beta 3 (Update: still happens in iOS 11.2) on iPad, when attempting to present a view controller from within a delegate method of a UIActionSheet, "nothing" happens and a ...
Orelu asked 20/7, 2014 at 20:52

2

Solved

I am converting an iOS app over and need to implement the equivalent of a UIActionSheet from iOS to Android. What UI element would most closely mimic this. I am targeting Android 2.2 and up.
Cimino asked 30/5, 2012 at 0:40

1

Solved

I'd like to create a very common effect as in the picture below : Explanation : the effect I'd like to accomplish consists in a view that appears (slides in) at the bottom of the screen when use...
Offprint asked 7/11, 2016 at 8:27

2

Solved

I have an iOS app with a UIAlertController in the form of a action sheet being presented in my app when the user taps on a button. It all works great, apart from one thing, the completion blocks d...

12

Solved

Is it possible to add an image to the buttons of the UIActionSheet as seen in UIDocumentInteractionController? If so, please let me know how it is done.

1

I am trying to figure out how to add a checkmark to the right side of a button in a UIActionSheet. Is there a safe way to add this checkmark in UIActionSheet's Button? is there any simpler way to d...
Carlicarlick asked 14/11, 2014 at 10:17

2

Now that iOS8 deprecated UIActionsheet and UIAlertview the customization working on iOS7 is not taking effect anymore. So far the only customization I'm aware is the tint color. And what I need is ...
Caracas asked 23/9, 2014 at 6:48

1

Solved

I want to use UIActionSheet for iOS8 but it's deprecated and I don't know how to use the updated way to use this... See the old code: -(void)acoesDoController:(UIViewController *)controller...
Tevis asked 3/8, 2016 at 13:1

1

Would it be possible to share a picture to Instagram bypassing the Action Share Sheet? Please Note that I am aware of the UIDocumentInteractionController and the hooks and in fact it works fine. ...
Sedgewake asked 31/3, 2016 at 23:58

4

Solved

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, ...
Hypersensitize asked 5/3, 2010 at 1:47

1

Solved

I am working on a universal app for the iPhone 6S / 6S Plus / and iPad form factors. Normally, presenting actionsheets / alertviews on an iPhone-only app is a simple manner. But my application cras...

5

Solved

I can show the actionSheet in iOS 7 but cannot show in iOS 8 environment. Is there any way to trace? UIActionSheet *_actionSheet = [[UIActionSheet alloc] initWithTitle:@"Account" delegate:self ...
Polychromy asked 26/9, 2014 at 14:27

3

Solved

I would like to implement a UIAlertViewController like this (Reference: Pages and Keynote app): . I have implemented a custom tableview and presented the view by mimicking the UIAlertViewControll...
Salver asked 4/1, 2016 at 14:18

2

I need to mark selected button in UIActionSheet. How can I add checkmark in UIActionSheet button? Is there some way specific for UIActionSheet, without standard adding image inside button.
Evensong asked 18/11, 2014 at 14:33

12

Solved

Apple recommends dismissing any UIAlertViews/UIActionSheets when entering background state in iOS 4. This is to avoid any confusion on the user's part when he relaunches the application later. I wo...
Biomedicine asked 23/6, 2010 at 22:18

3

Solved

I use green as the "action color" throughout my app, and I want the options in my UIActionSheets to be green as well, for consistency. How can I change the colour of the UIActionSheet options to gr...
Innoxious asked 6/10, 2013 at 18:27

© 2022 - 2024 — McMap. All rights reserved.