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 11 years ago.
Improve this question
I have an arrow that points to the bottom for each table cell. When you click on a table cell, the screen doesn't move to another screen. Rather, the bottom picker changes depending on which cell you selected.
Is this workflow acceptable according to Apple, or does it break guidelines?
This is not against the apple gui guidelines, and you are free to do this as you like.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
how can i set image to UIswitch on the white round part
Do not try to modify the UISwitch. Instead create your custom control that you will be able to fully customize. Subclass the UIControl and implement your own user interface. As a reference this repo may help you.
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 2 years ago.
Improve this question
I am parsing xml and got dynamically data and I am stored data in NSMutableArray
and display data in to UItableView, I attached screen shot
So how can I implement section expand and callspand by tapping section header(2011 COLLECTION)
Please guide me.
EDIT
Solved
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 would like to make some iPhone system style button, like camera, flash, deveice button in uiimagepickercontroller, where can I can those button picture?
Thank!
Export images from UIKit : https://github.com/0xced/UIKit-Artwork-Extractor
Probably you will find necessary icons/images.
If u looking for icons means check this website
http://speckyboy.com/2008/07/18/35-free-icon-sets-for-your-iphone-pimp-it-up/
I'd recommend checking out the popular glyphish set.
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.