Nav based app template question (iphone)

Hi,
I have used the navigation based application for a hello world type application, but want to extend it to support 2 tableviews on the first screen.
It seems like the one automatically created is called "tableView" in RootController.xib).
I can create a view and then put the 2 tables views as children, but I don't know how to name them topTableView and bottomTableView.
Can I still use the nav based app template for this?
thx

sorry, I'm a bit new to this as well, but I believe you would add two IBOutlets to your view controller (name them bottom and top) and then connect them via the interface builder to your actual table views. i don't think you get to name them in the properties panel like you would in visual studio, but this would give you access to them from your code.
good luck!

Similar Messages

  • Where can I get more information about website based apps for the iPhone?

    I just forgot and cannot seem to remember what the pages on the web for the iPhone are called. They are interactive and designed for use on the iPhone but are there, called up from the safari browser.
    I'm looking for a good interactive chess game site.
    TIA,
    Ken

    Web Apps
    <http://www.apple.com/webapps/whatarewebapps.html>
    <http://www.apple.com/webapps/>

  • Tab bar based app, with 4 tabs each linking to a different navigation menu

    Hi,
    Im new to coding and I was wondering if anyone could help me out with a problem im having. Im trying ot get 4 tabs accross the bottom in a tabbar with each one linking to a navigation page. Im trying to get 5 topics on each navigation page which go into more detail to another page when clicked. so 4 tabs x 5 topics x 5 more detailed topics. I have tried the O'Rilley tutorial and could make a tabbar with 2 tabs. but I cant do 4, can anyone help?
    Thank you all in advance.

    Hi Sunny, and welcome to the Dev Forum!
    If you're using [Elisabeth Robson's tutorial|http://broadcast.oreilly.com/2009/06/tab-bars-and-navigation-bars-t.ht ml], it looks like a nice job (for a different tutorial, please let us know if we can find it online). I generally start with the Tab Bar Application template, since it does almost all the work of setting up the skeleton. But you'll certainly learn more starting with the minimal, Window-based App template, which is the purpose of a tutorial.
    The easiest way to add a new tab is to find the required controller type in the Library and drag it into the tab bar. I think you want a UINavigationController there, so choose that one from the Controllers section of the Library. You can drag the nav controller icon into either window (i.e. the Tab Bar Controller editor window or the xib window). When dragging into the xib window, you can choose the new controller's position by where you drop it in the small icon tree. (Btw, I might have missed this in the tutorial, but make sure the xib window is displaying two columns with a small icon tree to the left. This is done by setting the View Mode switch to the center position). You can also add tabs by opening the Attributes Inspector when the tab bar controller is selected and clicking "+" under the View Controllers table.
    Once you have your additional nav controllers added, build onto each one the same way you did with tab 2. If that's the only place you were stuck, you should be on your way in a few minutes.
    \- Ray

  • IPhone web based apps question

    Every now an then when I am on an Internet based app it gets stuck on loading. All I do after that is press the home button and reopen the app and it loads. This has happened more than once. Is this anything to be worried about? Thanks.

    Does the iOS device work OK when connected to other networks?
    Do other devices connect with those apps?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • I cant download apps on my iphone 5, it takes me to set up 3 security questions where i am always timed out and made to start again??

    i cant download apps on my iphone 5, it takes me to set up 3 security questions where i am always timed out and made to start again??

    Call apple.This happened to me in August when i bought mine. They will reset the 3 passwords.

  • Re: How can I restore DELETED APPS :- icloud,facebook,twitter on my iPhone 4S?(THE APPS IN QUESTION CAME WITH MY iPhone I DID NOT PURCHASE THEM).These apps are dimmed and not responsive on my phone. I cannot back up to icloud.

    Little fingers have deleted the above mentioned apps!
    THE APPS IN QUESTION CAME WITH MY iPHONE.
    I DID NOT PURCHASE THEM!
    HOW CAN I RESTORE THEM, THEY ARE NOT LISTED IN THE APP STORE????

    Hey Clyde71,
    Thanks for the question. From your description, it sounds like various Account Settings have been greyed out in your Settings application (iCloud, Facebook, Twitter). The cause for these being greyed out is a restriction setup on your iPhone. You'll probably see that Restrictions are turned "On" in Settings > General.
    You'll want to disable the restriction "Allow Changes: Accounts". For more information on restrictions, see this article:
    iOS: Understanding Restrictions (Parental Controls)
    http://support.apple.com/kb/HT4213
    Thanks,
    Matt M.

  • Ask your question.I installed the app" Find my phone for my Ipad. But I also installed that app on my Iphone. but the Iphone app still just shows where my Ipad is located and not the phone, how can I get then both to show location?

    I installed the App" find my Iphone on my Ipad.. its working well.
    But I also need to be able to track my Iphone if lost... I also have the app on my Iphone but when I click on it to find my phone it is showing me where my Ipad is... how can I get it to show my Iphone also? the chances of me losing my Ipad are less then my Iphone.But I need to be able to trac both.

    How was your wife using the Find My iPhone app from a Samsung phone? But, that question aside, your wife should educate herself on how GPS works, especially on a cell phone. GPS signals can be interfered with by trees, buildings, clouds. Off by several miles would be unusual, though.
    If your wife is tracking your cell phone and not believing what you tell her, you may want to consider counseling as there are some very serious issues that go way beyond the technology.
    Best of luck.

  • [iPhone] Navigation-Based Application template / UITableViewController

    I'm new to development for both Mac OS X, the iPhone and Objective-C, but do have decent experience with C/C++. I'm trying to put together a series of simple iPhone applications to help expand my knowledge and wanted to ask whether or not I've got the right idea regarding my next test application.
    I've used the Navigation-Based Application template to create an application that loads a Table View and populates it with a few items. I'm considering this Table View as the root menu for my application. Selecting an item from the Root Menu will take the user to a sub-menu (that is specific to the Root Menu selection). Selection of an item from the sub-menu will take the user to a view that'll let them perform a particular action.
    I'm wondering the best way to go about structuring this kind of application? Should I create a controller class and accompanying xib for each of my sub-menus? If this is the case, would I have to use the didSelectRowAtIndexPath method to detect which menu item has been selected in order to determine which sub-menu view to push?
    I'm happy to get my hands dirty and experiment (which is why I'm taking these baby steps), but I'm hoping someone with a little experience can come along and shed some light on how a relative professional would go about doing something like this?

    Sounds like a good approach. You can use initWithNibName to load a view from a nib / xib. You can also re-use the same xib for different instances of the submenu view by parametrizing initWithNibName and do any customization to the controls in viewDidLoad.

  • IPhone 5 unable to connect to internet or use web-based apps like Facebook or Tumblr

    About two days ago, shortly after using my iPhone 5 to upload a picture of my son eating a donut to Facebook, I seem to have lost all ability to connect to the internet or update content on web-based apps like Facebook or Tumblr.  I tried to restore my iPhone in iTunes on my computer but could not do that without first turning of "Find My iPhone," in the iCloud section of my settings.  When asked to enter my password to turn off this feature the phone is "unable to connect to iCloud."  It doesn't seem to matter if I'm connected to WiFi or using my cell data - I'm getting a strong signal in either case, but the phone is unable to connect to anything.  I CAN make phone calls and send texts but that's just about it.
    I recently updated to IOS 8.1.1 but it worked fine for several days before this problem started.  Any ideas?

    I reset my network settings (Settings > General > Reset > Reset Network Settings) and rejoined my network, and that seemed to fix it. Apps are working on wifi and on data, and I can once again send imessages. Since I couldn't find a similar post very easily, I wanted to post this for whoever needs help with this problem ;D

  • Question About Sharing Apps Between My iPhone and My Wife's iPhone

    Hi, I have a question about downloading apps to my iPhone.
    I ordered two iPhone 3g's - one for my wife and one for me, and I've discovered that when I download an app (even free ones) on my iPhone and then later sync it to iTunes, my wife cannot put it on her phone. However if I download it on iTunes on my computer and later sync it to my phone, then my wife is able to sync it to her phone as well. It's no big deal when they are free because she can just go get it if she wants it. I haven't purchased any apps yet, but is there a way to be able to give my wife apps that I purchase on my iPhone? Or do I need to purchase all of my [pay] apps and songs on iTunes on my computer to ensure we both have access? Or do I have it all wrong completely LOL?? This rights management stuff is confusing.
    Thanks in advance for your help,
    Jimmy

    I had my iTunes account and phone before I got my wife's hers. When I first started, I synced hers from her account on my computer brought in my libraries and authorized her phone as one of the 5 allowed. She had all purchased apps and music. Over time we each bought music or apps on our seperate accouts. Of course, we told each other about cool apps or music we bought and wanted on our phone. When I went to sync iTunes was going to delete all music and apps and sync with the library I was logged into. Didn't want that, only work around I have found is to copy new music or new apps from one library to the other. Updating on the phone is also difficult because you can't switch between accounts so updates have to be done at the computer for apps bought under different accounts. I am sure there is a better way to do this and ask for an insight anyone would have. I hope it works out.
    Message was edited by: AfoUare for typos

  • Capture iPhone camera and microphone using QuickTIme in a web based app.

    Hi all.
    Can I capture video from iPhone's camera and audio from the mic. using QuickTime in a web based app. ? Of course on the iPhone 3G and 3GS. I need this because I want to let users to use the iPhone for a web based video chat. So theoretically my point is to use QuickTime to capture an a/v signal from a Mac camera/mic. or iPhone camera/mic., to encode that a/v signal (QuickTime knows to encode to H.264/AAC right?) and to send the encoded stream to a server. Is this scenario a realistic one? Can it be implemented ? (I don't have any experience in programming with iPhone and Mac...)
    Btw. do you know any emulators for iPhone that runs on Windows 7?
    Thanks,
    Tudor

    Hi
    See this Thread
    Last login date & Time
    Kind Regards
    Mukesh

  • Following iPhone 2G update to OS 3.0.1, cannot use web or web based apps

    I recently updated my iPhone and iTunes. iPhone is now running OS 3.0.1. I use o2 as my service provider.
    I have had a few problems, all of which have been solved by these discussion forums, so I am hoping this final, highly annoying thing can be sorted.
    I cannot access the web. If I enter Safari, a message pops up saying
    "Could not activate cellular data network - you are not subscribed to a cellular data service"
    Now, for a start, I'm not entirely sure what they mean - is it a problem with the phone or with O2?
    I have a little circle next to the carrier name, which I believe (having gone through a troubleshoot on the Apple website) means I have a service of some kind, or my phone recognises a service?
    (I'm not technically minded, can you tell!)
    Obviously I have no web connection, so I cannot use any of my web based apps either, which is highly irritating.
    I'd be really grateful if anyone can help. Thanks in advance.
    Message was edited by: Lou1985

    Hi there. I too had this problem after upgrading an iPhone 2G from OS 2.1 to 3.0.1. I solved it by doing the following:
    Select Settings > General > Network > Cellular data network and then change the Cellular data APN to: mobile.o2.co.uk (assuming you are an O2 customer). I think that resetting the network settings under Settings > General > Reset > Reset Network Settings also works.
    Hope this helps.
    Tim

  • Hello-- I'am thinking off making an app to the iphone, but i'am not sure aboutsomething. the app should get some alarms from a specific phone number, and my question is, can i make an app that can receive message from a specific phone number ?

    Hello-- I'am thinking off making an app to the iphone, but i'am not sure aboutsomething. the app should get some alarms from a specific phone number, and my question is, can i make an app that can receive message from a specific phone number ?

    This needs to be asked at http://developer.apple.com/

  • Iphone apps - 3 questions

    Hi guys, hopefully this is easy, for someone in the know...
    I went in to get an app for my iphone last night, hit install, was asked for my password, the installation process starts and then stops.
    I am asked for my password again and then presented with a screen asking 3 questions to be provided, with answers, as a security "check".
    This is where I bailed...
    Is this legit.... or some sort of scam....?
    yours in anticipation,
    Stu.

    It's legit: http://www.macrumors.com/2012/04/12/apple-enhancing-apple-id-safety-by-enforcing -security-question-requirements/

  • App store in iphone looks stretched

    i have an iphone 4 and ipad 3rd gen.
    Sometimes when i use the app store.
    The app store in iphone looks like an ipad version ( stretched like ipads) . Bigger icons and need to pan to see the apps.
    The app store in iPad looks like a iphone version . smaller icons and it shriked to the left hand side of my ipad.
    Anybody is having this issue. any reasons for this. how to resolve this.

    Try to reset the password at this page:  iforgot.apple.com?
    If this does not work, because you have no recovery email address or don't remember your security questions, useone of the options described here in this link:
           Apple ID: All about Apple ID security questions
    If that is impossible for some reason, you need to give Apple Support a call - only they will be able to help you. See this webpage on how to contact Apple Support in your country: There are either telephone umbers given or an email form:
         Apple ID: Contacting Apple for help with Apple ID account security
    Explain, that you need help with an account security problem.
    You can also try to email the iTunes Support using this form:https://ssl.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • HT1222 MacOSX v10.6.8 mail and security update issues - help?

    in the system profiler, my mail app is showing as v4.5  but has the application name Mail 3.6   Not sure if that matters but I read to reinstall updcombo and security update but when installing the security update I get: security update 2012-004 can'

  • One database with multiple instance names

    Dear all, We would be very happy if anyone can provide me with some information of how RMAN operates. Current situation: we have 2 machines running Oracle9i with just one database. The production database is "replicated" using EMC's TimeFinder/Snap.

  • Problem with sysdba need help

    I faced a difficult problem with sysdba. The thing is, I don't have a user name " 1/2@3 ". But the moment I connected as 1/2@3 as sysdba, then it connected automatically and to utter surprise I could drop a user. If it is so, then how the database wi

  • Broadcast Bex queries in CSV format

    Hi, Is there a way to broadcast Bex queries in "CSV" format? Please do not confuse this with the "Export to CSV" option. I need to be able to set up the job periodically to send the reports in CSV format. Any ideas... Thanks

  • Application of "Contacts" in iPad2 32+3G (firmware 4.3.4)

    Good day! Application of "Contacts" in iPad2 32+3G (firmware 4.3.4) Today, when editing contacts application closed and reopened all the contacts from it are gone. Two questions: 1.How to restore contacts (address books are not synchronized, making r