Disable search button - iphone

I have a problem and would appreciate it if you would help me.
I made a app from this tutorial:
http://www.lonhosford.com/lonblog/2011/05/08/xcode-4-iphone-tutorial-mountains-of-the-usa-overview/?fb_comment_id=fbc_10150196924999637_19584378_10150363736289637#f20e4d75c4
It works great, but i need it without the search button. I want to see all the data when i start the app... without taping on the search button or anything else.
I am in the learning process and it would help me a lot if someone would answer.
On the link you will find all the codes i used in the app.
Thanks a lot!!
David R.

remove the button from the interface and just call the method associated with the tap of the button from your viewDidLoad.

Related

Swift show button to refresh table like in twitter

Please can someone tell me how I get a button to appear if there are new information like in twitter 'more tweets'
Just would like to know the coding to show the button and make the button disappear
Thanks in advance
This approach called "Pull to Refresh". Adding the button is one of many steps you will need to take in order to apply this functionality. There are many good tutorials over the web for how to do it, here are few:
https://www.andrewcbancroft.com/2015/03/17/basics-of-pull-to-refresh-for-swift-developers/
https://grokswift.com/pull-to-refresh-swift-table-view/
https://www.appcoda.com/custom-pull-to-refresh/

Change language when button pressed Xcode

I want to make my app multi-language. I know how to do this.
But the problem is that, the user should first change the phones languages before the translation will work.
What I want to do is the following: I have 3 buttons. Dutch,English,French.
When a user presses a button. The language of the app is changed to the appropriate language. But the phone's language keeps the same.
Hope anyone can help me!
Kind regards
But the different translations into different files. Load the needed file according to the button the user touched.
If this does not answer your question, please be more specific what exactly you problem is.

Showing multiple UIPopoverController at a time

OK, I know that HIG do not recommend to show several UIPopoverControllers at a time but still... is it possible anyway?
I tried to show two popovers one near another but can't figure out how to do it: first popover closes when other one appears :/
Try the following link that will help you.
link
link

Small popup for instructions... How?

I am trying to get a popup appear the first time an app is started. Just to give you an idea check the new version of foursquare. A small popup (like a comic) appear explaining where the checkin button is located. Then if you tap anywhere it goes away. I googled for the last hour but I have not found anything at all and I have no idea on how to do it.
Anyone can point me in the right direction?
Thanks in advance,
Umberto
You can show a customized UIlabel on app's load and then use performSelectorAfterDelay: and hide the label inside this method. For the tapping thing you can add a UITapGesture on your view to notify if some tap's occurred and hide the label if it's still there.
You can have a look at TapKu by Devin Ross http://www.cocoacontrols.com/platforms/ios/controls/tapku-alerts-with-images

How to change text Cancel button Searchbar of iPhone in Titanium?

When I set the value 'true' to showCancel property in the method Titanium.UI.createSearchBar. It displays me the cancel button, but I would like to customize that button text to Go or anything else. How do I do that? Please give me suggestions. Thanks you so much.
I don't believe in Titanium Mobile SDK 1.4 you can change the button text.
As a work around you could add your own button to the screen and have it interact with the tableview. Not an ideal solution though.
Please find below the current documentation link.
http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.SearchBar-object