I am finding it very difficult to grasp how the Views are loaded and wired with the TabBarController in the iPhoneCoreDataRecipes App.
Does anyone have any pointers on how to learn the concepts presented in this Apple sample App?
I have read the other items on Apple developer site.
- (void)applicationDidFinishLaunching:(UIApplication *...
Hi,
So here is what i have:
A UITabBarController that handles different UIViewControllers. In one of the UIViewController i am trying to switch the view being displayed when the device rotates to landscape.
the important part is that the view displayed in landscape MUST take the whole screen...
I have correctly implemented the methods :...
Ok bit of a newbie type question.
I want to use Core Data, together with Tab and Navigation controllers.
In XCode if I create a Navigation Based Application I get the option to choose Core Data. Whereas If I create a Tab Bar Application I don't get the choice.
I understand that Tab Bars display view controllers so it kinda makes sen...
Hi, I wrote a Simple View Controller with multi touch function (swipe left, swipe right). It works fine if I set it to window directly.
But after I added a tab bar controller and add this Simple View in its selected view, the multi-touch event won't get fired any more.
Please help. Thanks.
...
I do this in a UIViewController for one of my tabs:
self.title = @"Welcome";
However, it's overwriting whatever I have for the tabBarItem. I have tried:
self.tabBarItem.title = @"Home";
and
[self.tabBarItem initWithTitle:@"Home" image:[UIImage imageNamed:@"iconHome.png"] tag:0];
But still, self.title overwrites the tabBarItem, r...
Hi,
I'm developing an iPhone application that have a TabBarController with two tabs.
Each tab contains a UIWebView that loads a web page from my web site.
I want to add a view that will function as a welcome screen that doesn't show the TabBarController itself (full screen view) and indicates that the application is being loaded.
Afte...
I have a tab bar controller managing 4 tabs. I have subclassed the tab bar controller so that the shouldAutorotateToInterfaceOrientation: method only allows a specific view controller in one of the tabs to rotate. Everything works almost fine: the controllers in the remaining tabs do not rotate. However, when the view controller which is...
Hey everyone, running into a bit of an issue,
I have created all my views through IB, with the main window having a NavigationController, and a TabBarController which loads a TableViewController in its first tab.
The problem happens when i use the searchbarcontroller in the navigation controller, everything works fine with the exceptio...
I am using a nib file and in that I am using a view which is UIScrollView.And my UIscrollView is in UItabbarcontroller.But I dont know how to scroll the view.can anybody guide me how to scroll the view in Tabbarcontroller.
...
I have a tab bar set up which I would like to call a refresh method from a view controller each time that view controller is tapped. However, when I try calling this method from the App Delegate it crashes on a line in the refresh method containing a string from the view controller. I figure that if I'd be able to call the shouldSelectVi...
Hi, this a very basic question but i don't know how to make pop a view over the tabbarcontroller for exemple i got a tabbar and i got a 'add' baritembutton
and i want a view to come from down and don't see the tabbar anymore.
thx
...
hi , i have posted how to show a modalViewController but now i need to remove it and come back to my tabbarController with the view he was. thx
...
Hi, I have a tabbar with one of the tabs containing a drilldown table.
I am having problems once the user has finished using the drilldown table. If they change to another tab, then change back to the original tab, the original tab is still where I left it (at the bottom of the drill down showing the detail view)
What I want is on mov...
Hi,
i'm new at Iphone SDK Developing and now i need some help.
I have a LoginView where the User have to authentificate his legitimacy.
After he enter his Username and Passwort he click on the "Sign In" Button.
Then i want to load my "Real-App". Here is the Problem because i can't switch from the LoginScreen to the TabBarController. I ...
I am developing an iPhone app that displays several views, all acessed via Tab Bar items. However I need to add an additional item to the Tab Bar that simply launches a URL in Safari.
I've accomplished this by adding an empty placeholder view to the TabBar and returning FALSE from shouldSelectViewController when the this view's tabBarI...
I'm having a bit of a problem with the viewDidAppear: method. I have a tabBarController with navigationControllers on each tab, and I have an action that requires that all the navigation controllers pop to their rootViewControllers (programmatically).
The problem is that when they pop each navigation controller, the rootViewController's...
I've got an application that uses a Tab Bar Controller along with a Navigation Controller.But for some pages I want to hide both bars(Tab & navigation) after that those will be visible again...I am able to hide navigation bar & also done with making. it appear after some pages.
I am able to hide tab bar with
- (BOOL)hidesBottomBarWhenPu...
Hi Guys ,
I need to display the action sheet above the Tab Bar controller. I mean, I would be able to see the Tab Bar controller even the action sheet view is in visible mode.
So, Please suggest how to view from above the Tab Bar controller. Is it possible.
secondly, How to change the back ground color of action sheet and cancel butto...
In my project I'm using a tabBarController, then on one of my tabs, I add a navigation controller.
The problem I'm having is this: If I use this code in the AppDelegate:
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application...
Hello,
I have a 4 tabbar application. The second tab has a tableviewController.
When i select the second tab the tableview is displayed with it's contents and it works fine.
The problem is that that data is comming from the network and it talks 2-3 seconds to load. So when i press the second tab it goes there after the contents have be...