uiactionsheet Questions
2
Solved
With pre-iOS 8 we had to use the UIAlertView and UIActionSheet
Which we weren't allowed to mess with the view hierarchy or subclass on either them.
UIAlertView Documentation
The UIAlertView c...
Lessielessing asked 3/6, 2014 at 14:20
4
Solved
i'm using UIAlertController . But on iPad with iOS 8, actionSheet show with popover arrow. Any ideas to hide that arrow?
Here is my code:
UIAlertController *alertController = [UIAlertController ...
Rastus asked 17/9, 2014 at 4:7
5
Solved
I have an application that is configured via the plist file to support portrait, landscape left, and landscape right orientations (i.e. UISupportedInterfaceOrientations is set to UIInterfaceOrienta...
Ladder asked 13/9, 2014 at 2:1
10
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 sh...
Sourdine asked 16/12, 2010 at 2:33
2
Solved
I would like to replicate this behaviour (see image below) and share contents from my app using this kind of action sheet.
The question is:
Is this really an Action Sheet? I can't find anywher...
Trahan asked 11/8, 2015 at 11:58
4
Solved
In my app i am displaying a UIDateTimePicker in action sheet through code. it is working fine.
But i don't want to display date and day.How this can be done.
Please help. Thanks in advance.
code:
...
Extortioner asked 21/7, 2011 at 9:32
4
I'm seeing a memory leak in iOS 8 in simulator when I do the following with UIActionSheet or UIAlertController. UIActionSheet uses UIAlertController in IOS 8 so the issues are related.
showCameraA...
Gingery asked 8/10, 2014 at 0:4
2
Solved
I am in the process of rewriting my app from objective c to Swift and I noticed that UIActionSheet behaves differently in Swift version than in obj-c version.
Obj-c version
Swift version
Thi...
Cardoso asked 23/1, 2015 at 18:30
2
I used code from this post to display a action sheet in my application. But it shows like
What will be the reason?
My code to display action sheet is
UIActionSheet *actionSheet = [[UIActionShe...
Plinth asked 29/2, 2012 at 9:9
8
It could be probably a bug on iOS7. But the last button is not separated from the previous one
As you can see from the image. This happens on both Simulator and device using iOS7 GM.
Does everyone...
Geomorphic asked 13/9, 2013 at 16:16
5
Solved
While using a UIActionSheet in an iphone app, the typical methods of matching actions to buttons seem very fragile and aesthetically unpleasant. Perhaps its due to my minimal C/C++ background (more...
Whoremaster asked 20/10, 2010 at 3:4
0
I have an UIAlertController (UIAlertControllerStyleActionSheet) on iPhone which now should be presented in a UIPopoverPresentationController on the iPad version..
I am doing the following:
UIPop...
Airhead asked 18/3, 2015 at 20:47
6
Solved
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 ...
Ereshkigal asked 6/12, 2010 at 4:49
2
I'm new to iOS development, learning bits and pieces.
I've few more queries in continuation to another thread (iOS7: How does Apple make a navigation controller look like a uiactionsheet in the cal...
Baziotes asked 18/10, 2013 at 10:52
1
Solved
I have a button with some options.
- (IBAction)monstrarActionSheet:(id)sender {
UIActionSheet *action = [[UIActionSheet alloc] initWithTitle:@"Titulo"
delegate:self
cancelButtonTitle:@"Mejor n...
Diaphysis asked 18/2, 2015 at 1:53
3
Solved
I know I have to set the delegate (I did so like this: class ShiftOverview: UITableViewController, UIActionSheetDelegate {...) but I'm still getting no response when I tap the buttons.
It doesn't ...
Felspar asked 5/1, 2015 at 20:57
7
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...
Sherasherar asked 10/5, 2010 at 22:51
2
Solved
My program compiles successfully, but when I press the button, it crashes. Here's the viewController.swift:
import UIKit
class ViewController: UIViewController, UIActionSheetDelegate{
@IBOutlet ...
Guthrey asked 13/6, 2014 at 5:22
2
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...
Sporophyte asked 11/11, 2011 at 21:40
2
Solved
I create an UIActionSheet in my ViewController. I also add code to catch UIKeyboardWillShowNotification and UIKeyboardWillHideNotification notification.
My problem is when I dismiss, I get two no...
Evaleen asked 19/11, 2013 at 9:50
1
Solved
I am trying to create little custome UI of UIActionSheet.I want to display the large text in button of UIActionSheet. This code is working fine below ios 8, But in ios 8
- (void)willPresentActionS...
Towner asked 9/10, 2014 at 11:45
2
Solved
My problem is quite simple but I can't find a way around it. When a button is pressed I present a UIActionSheet with two options (library/camera). When the users presses a button on the UIActionShe...
Hooligan asked 3/10, 2014 at 9:6
6
I am adding UIPickerView to UIActionsheet but its working perfectally in ios 7 but not working in ios 8. Please help me to solve that.
Here i attached screenshot for that.
Thanks
I am using foll...
Catheryncatheter asked 23/6, 2014 at 12:51
2
I m currently running into complete frustrations as i can't find any error, but my ActionSheet crashes on iPad but works well on iPhone here is the code of the action
if (view.annotation.title as ...
Pamplona asked 25/9, 2014 at 11:37
2
In iOS 7 have been using ActionSheetPicker to let the user to select a choice and it has been working great until I installed Xcode beta 2 and ran my project in iOS 8. Is there a way to do this in ...
Mary asked 18/6, 2014 at 23:43
© 2022 - 2024 — McMap. All rights reserved.