Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I wondering, how can I add uitableview in the Alert?
In my app I have an uitableview and if the user press in one row is going to show a dialog with a table (the table have some action).
How can I made this behavior in IOS 7?
I just try this library https://github.com/wimagguc/ios-custom-alertview but I couldn't fix my issue.
Regards,
David
Since there is not option to this in the standard UIAlertView you will have to make your own class.
Because the UIAlertView clear states:
Subclassing Notes
The UIAlertView class is intended to be used as-is and does not support subclassing. The view hierarchy for this
class is private and must not be modifie
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I'm currently trying to create a clicker game which shows how much money you receive when clicking. I'm new to Xcode and swift, but this seems like it should be pretty easy. I would like the score to show how much you earn each time you click it. These labels would appear then disappear quickly. Here is what it would look like:
Any and all help in furthering the clicker game (tips, etc.) would be greatly appreciated :)
you can add a tap gesture to your view controller and in that UITapGestureRecognizer selector you can do your code to increment count.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have a custom alert view class with layoutsubviews and draw rect method.Is Apple rejecting because of it?
Thanks
People add subviews to UIAlertView all the time, usually textFields and activityIndicators. I don't see why custom drawing would be out the question. Don't incorporate any private methods, Apple review has an automated test that will detect that.
If you get rejected you will get an explicit reason, so you'll know what to fix.
If you're that paranoid, just create a UIView subclass that resembles an AlertView. You'll need some photoshop chops though :-)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Is there any hint that the spinning effect of images/patterns (on Slot Machine) can be implemented on iOS ?
What I can think of is to use animation of graphics of UIImageView.
Any better suggestion ?
You can go with UIPickerView containing UIImageViews as elements, or check this url
What about a UIPickerView with custom views ?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Link to what I mean:
http://imgur.com/a/bltbY
What I'd like to get is the same transparent border, up pointing arrow and tint for my own pop-up views.
Any help would be appreciated.
Thanks,
Andrei
You have to use the UIPopOverController.
Setting the contentViewController to your TableViewController. To attach it to a button you can use the presentPopoverFromRect:inView:permittedArrowDirections:animated: method.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
So I have an Application that involves sending emails through an API. What I would like is that to have the same or similar to compose email interface available on the phone already.
Unfortunately in all apples Goodness there is no view that just does that.
[AppleComposeMailViewController alloc];
Would do the trick nicely.
So I have started down the strategy of using a UItableViewController. I have had sucess until i try and Add a dynamically expanding cell on the end for Content.
Should I keep down this path or try implementing from the UIScrollView Base?
If the Table view is the way to go how would i go about getting a TextView into the Last cell that expands as a user types.
IF I go UIScrollView, what are some strategies i can use to make implementing the top table like views easier.
In App Email is available in iPhone OS 3.0 and should do just what you describe. Check out MessageUI.
check out the great 'e-mail' composer in the Three20 framework (screenshot)