treehouse iphone [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am making my first app.
I'm doing the treehouse tutorials and I've made a button and a label from a single view template. When I press "play" or "run" the simulator just brings up either a white screen (for ipad) or nothing (for iphone). What am I missing? I've searched on google, but it's such a generic question that I couldn't find what I was looking for without explaining myself. What obvious little thing am I missing here?

Try setting your initial view controller in your MainStoryboard.

I think Sam is trying to say that in your project settings, you have a choice of "Main Interface" (which must be a XIB file) or "Main Storyboard". If you set this your app will know which view to show on startup.

Related

How to set iPhone lock screen background programmatically? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am interested to develope an app which will show quotes on the lock screen of my iPhone. I want app like following image.
I am trying to do it but not getting any idea.
Please help me so I can start working on it.
This is not possible, the SDK does not let you do this.
As #Toam pointed out, the SDK does not allow you to set the lock screen background. However, you can kinda-sorta get around this. If you're willing to play a little music, you can set your own images/text to the lock screen in playback mode. Details can be found here: https://stackoverflow.com/a/8387406/716216

Combobox Image for the iPhone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to create simple combo box for my app. I've read the following question: Add UIPickerView & a Button in Action sheet - How?
Do you have links for a nice image that I can put on the button that acts like a combobox? I searched the web with no luck, so whoever uses my app doesn't know that this button is actually a combobox.
Thanks.
Here's link to some nice iphone kit images:
iOS 5 GUI PSD (iPhone 4S)
If you can't find it there, do what we all do, either design the images yourself or hire a designer :)

how to Include another application in my application? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
In my application i was supposed to include/access/bring another application which is installed in iPhone. I don't have the source code for the other application. I googled several references which says that i should include the source file of another application without ticking copy options. but the problem here is i don't have the source file of the application.
If you're hoping to "embed" another application so that it appears to be part of your own then you're going to be out of luck (i.e. this cannot be done) without the source.
If you'd like to launch another application (say facebook) then you can use URL schemes, there's a good reference here: http://wiki.akosma.com/IPhone_URL_Schemes
If you have something else in mind you'll have to rephrase the question as others have already said, it's not entirely clear.

Aghhh!!! I lost interface builder to code [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
So this is probably a noob question, but my interface builder turned into red code. I think the "version editor" somehow did it, but I just want it back. I am a noob and can't write the interface in code. Any help?
You mean in the left pane that lists your files, the .xib filename turned red? That means the file is gone, and usually XCode didn't do it, or it would have removed it from the list too. Maybe you deleted it from the file system, maybe it was done by a version control system as you are suggesting. If you have it in a version control system you should be able to get back the last version of it.
If all else fails, File > New > New File. Choose User Interface under iOS, and pick usually View. Re-create your interface using Interface Builder from scratch.

Custom Keyboard in iphone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i have to develope an application in which
i have to add two buttons within the keyboard
i need to know how to implement it.
please help me.
i will be thank full.
I have been watching the iphone classes that are in itunes from Stanford University. They had someone from Apple there and asked this question and they said that you cannot change the keyboard except to change the return key to one of the other settings for it. I do like what Facebook and Tweetie (the guy that wrote this also talked in the iphone classes) have done to add buttons. They stated that overall Apple wanted a consistant look and feel to things like the keyboard.
You can't do this. You can do what the Facebook and Tweetie apps do, though, and add an additional set of controls right above the keyboard.
You can do it with the latest iOS version. Check the inputView property of UITextField for details.