How to create a "Drop-Up-Menu"? [closed] - ios

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to create a drop up menu like this.
But I have no clue what it is called, so I can't look for it.
And by the way, are there others methods to create such a "more option"-menu? I know there is the UIPickerView, but if i have only 2 or 3 buttons to choose from it is fairly unnecessary to implement a whole pickview.
Thanks in advance!

David Wong is right, you always can use UIActionSheet for iOS 7 style drop menu, but if you want to use some cool custom controllers here's the list:
Drop menus
REMenu
LBActionSheet
NIDropDown
LHDropDownControl
kxmenu
Modal (cool ones)
KGModal
RNGridMenu
KNSemiModalViewController
But if you're just starting your journey of iOS development, you better stick with UIActionSheet.
Good luck!

That's a UIActionSheet
Just adds buttons and use the various show methods to bring it up. Don't forget to set the delegate to handle which button gets pressed.

Related

Customized drop down for top bar [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
I'm looking for information about how to make a navigation bar with drop down functionality similar to the big iPad apps like on the picture below. It looks like they are using the same elements.
Is there some kind of support in iOS7 for this? Or any third-party implementation?
I've tried searching but I can't find anything that looks similar to the picture posted.
That's a popover, managed by a UIPopoverController

iOS - determine what screen appears first in project [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I know this might be a very basic question. But I am new to iOS.
I am building ontop of an existing project I found.I would like to add a scene( screen) which I would like to pop up before the main screen shows. I have tried many things, but no matter what I do, the first screen which pops up is the main screen.
Because I am new, please provide a detailed explanation.
And i am using a storyboard, i am not using a nib file which i would like to appear first.
If using Storyboard, just select the view controller and enable Is initial view controller option.

How to make a table/Grid in iOS? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I would like to create something like the image below in my iOS app. What is the best way to approach this, note the rows and the columns can vary.
The easiest way I thought of was to insert html table into UIWebView, but not sure if there is a way to intercept radio button clicks like there is for a regular button by making it a "href link"
A little unrelated to what you have as the title of your question, but maybe look at using UISegmentedControl. It's the closest thing to radial buttons that exists in the Objective-C world.
If you went with a segmented control, you no longer need to worry about columns, intercepting touches, and a lot of the other problems you mention in your Question - it could all be done in a normal UITableView. You would have to create some custom UITableViewCell subclasses to get the segmented controls in, but there are a lot of good tutorials (YouTube, Apple Docs, SO) on how to set those up.
From iOS 6+ you could use the UICollectionView class to build up a grid. Managing the values in the data source (representing if a radio is checked or not) is something you'd have to implement yourself.

UISearchBar and two UITableView [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I hope everybody is fine. I'm new to iOS programming and I have a question. In my app I have an UISearchBar and two UITableView. The first UItableView is the one the have the list of items and I want to use the second one to display the result that I get from the UISearch. My question is if there is a way that I can connect the second UITable to display the result? I think using control and dragging it but it didnt work. Please is anyone can help me
You don't need 2 tables. IOS has UISearchDisplayController component which already has 2 tables, one for showing data and one for search results.
I suggest you to read this article http://pinkstone.co.uk/how-to-create-a-searchable-uitableview/
and to download project from it https://github.com/versluis/Table-Seach-2013

Show UISearchDisplayController at bottom of the screen [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions must demonstrate a minimal understanding of the problem being solved. Tell us what you've tried to do, why it didn't work, and how it should work. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
guys. I need to implement our designer's model. Here, he has moved the search bar to the bottom on the screen and whenever the keyboard appears it is moved to the top of the keyboard. Now I would like to keep the UISearchDisplayController to get all the filtering functionallity. But seems it's not possible to change the searchbar and keep it there. I could adjust the initial frame, but then when editmode comes. The bar is lifted to top of the screen. Has anybody done this before? Or maybe an alternative control that I could use?.
Thanks a lot.
You cannot use a UISearchDisplay in your case, you will need to implement the component yourself from scratch. The good thing is that you can use a UISearchBar for that, and just implemente yourself the behaviour using the delegate.
UISearchBar

Resources