interface-builder

Can't change UITableViewCell size in Interface Builder

Does anyone have the same problem as I do? ... I've upgraded to the iPhone SDK 3.2 and I am unable to resize UITableViewCell object in my XIB file (usually I've been just resizing the view but now the cell has the same size and there is just a grey are around) ... btw, I've tried to reinstall twice including one deep reinstall. ...

NSTextView doesn't initialize when I call readFromData:(NSData *)data ofType:(NSString*)string

I have a refreshDisplay: method that calls the setString: method of an NSTextView. I can save, and load, but when I load even though my program loads the data, it does not display it on the NSTextView as it should. I did a check and that NSTextView seems to be nil when I load, which is why the setString: method does not do anything to it...

Can't open Tab Bar Controller in IB

I've only just started learning to build iPhone apps using xcode. I'm slowly getting the basics, but I've come across a problem in Interface Builder. When I create a new project using the Tab Bar Application template, I can't seem to do anything with the Tab Bar Controller in main.xib. When I double click the file, IB opens up fine, bu...

iPhone: IBAction Causes "Unrecognized Selector Sent to Instance" Error

I'm working on my first real iPhone app, a simple To-Do list application to help me organize stuff, except I'm getting an "unrecognized selector sent to instance 0x". Specifically: 2010-02-20 14:30:09.200 ToDoApp[88562:20b] *** -[NSCFDictionary switchViews:]: unrecognized selector sent to instance 0x3d22de0 2010-02-20 14:30:09.201 ToD...

Recreating a Duplicate iPhone Project with Interface Builder Errors

Due to some extraneous errors in a previous XCode project that wouldn't allow my iPhone app to run on the iPhone, I had to take all the code and files from what we'll call Project1 and build a new project called Project2. I then filled Project2 with all the same files, not changing any code. Next I had to recreate the Interface Builder...

when you resign a uitexfield keyboards first responder is it simulating hitting the return/done button?

Basically i have a uitext field that adds a string to an array when you hit the done button of the keyboard (or hit the'+' button next to the field), which I think is the behavior to be expected in the ui by users, however if they choose to close the keyboard by touching the big button behind everything that will also resign the first re...

How to add a label below the button in the tool bar?

I am new to iphone development.I have kept a button in the tool bar.I have given a image for it.I have to give a label to it (below the button).If i placed a label below the button and give text in the label and while running i am not able to see the text.I don't know where i go wrong.Since i am doing this in interface builder i am not ...

Reusable bits of interface, designed in IB

I'm making an app that includes the same group of buttons in many different contexts. The buttons send their actions to a different object in each context. I'd like to be able to design a single NSView in IB containing the buttons, and then be able to put copies of that view in many places in my nibs, while maintaining the link, so chang...

Adding a UINavigationController to a tabbar application

I have a three view tab bar app the second view of which I want to contain a navigation controller. in the navcontroller the first/root view will be a custom uiview containing a uitableview that when you touch a cell will push another custom uiview in to disclose details about the touched cell. I have found the documentation on doing t...

How to terminate an iPhone application through a TabBaritem in Interface Builder?

Hi, I have developed an iPhone app where there are four tab bar items and if i press the last TabBar the application should terminate. How to do it in Interface Builder? ...

Interface builder not showing anything

I have been using IB for a while now and have created several projects. Now for some reason the inspector is always displaying (Empty Selection) no matter what I have selected. ...

One Root view controller , Manages all other views?

Hi guys, I was just wondering if its normal for an app to a have one root view controller which gets passed other view controllers and switches betwen them ? - in other words there is one view controller which switches between all other views. So one root controller manages all the other views ( so in a large application for the sake o...

How do you make a bindings view in a Interface Builder Plugin (IBPlugin)

I am trying to make property have a bindings inspector view like the textfield has for it's value. With a combo of all nonview items that has a checkbox toggle if you want to enable the binding or not. I get how to make an IBPlugin with outlets and actions but I can't figure out how to get a popupbutton with available objects in the ni...

Interface builder/Objective C problem

Hi. I'm trying to create an application in interface builder, and I'm having a problem. What I want is to create a screen with an image, together with a sectionIndexTitlesForTableView bar. When the sectionIndexTitlesForTableView bar is touched, I want the image to disappear (and never reappear again), and to jump directly to the select...

iphone interface events resolve on exit

I'm having trouble getting components added through the Interface Builder to work on the iPhone. It works perfectly in the simulator, but not on the device. When debugging I found that the events are handled on exit, instead of when i actually press the button. Anyone else run into this issue? edit: after some investigation, it turns ou...

Interface Builder won't allow drag/drop of text control to window

Noob dumb question, no doubt -- but here it is: Trying to tutorialize myself with the Apple "Currency Converter" tutorial for Cocoa ( http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ObjCTutorial/05View/05View.html) Embarrassingly, I'm stuck very early on where the instructions ask me to drag-and-drop a text fiel...

Is there a UI builder for Ext Js?

Any good UI builder for Ext Js out there? ...

Is there a way to force Interface Builder events to resolve?

i'm having issues where if I use draw commands in a UIView::drawRect method, components created through Interface Builder will not resolve their events. Is there a way to force events to resolve, kind of like how you can force a draw by calling [self setneedsdisplay]. yes, i'm having problems clicking on buttons and switches. the events...

[Stanford iTunes U] iPhone - creating outlets and actions on object from Interface Builder

In the initial lecture "1. Introduction to Mac OS X, Cocoa touch, Objective-C and Tools" the students are instructed to drag an "Object" into interface builder and set the class actions and outlets. I do not seem to have this ability in my interface builder. Was it removed or disabled in more recent versions? ...

When Should I Use The Interface Builder?

As I'm learning the iPhone API, the book I'm using has me doing everything possible with the Interface Builder. We (lonely here sometimes) are writing code, too, but I really feel like I'm getting to know the Interface Builder quite well. I know that the Interface Builder is different from other GUI Builders as it uses serialized object...