0
votes
0answers
36 views

Some nib objects are not init in iOS6

So I've been having problems with this for a while and not really noticing it I think. However I tried to do something basic this morning and I can't see why it's doing this, so I though I'd ask about ...
0
votes
1answer
107 views

How autoresize view without auto layout in iOS

i have a problem that i can't understand with resizing view, my deployment target is iOs 5.0, so i have disabled autolayout in interface builder xib to make it compatible with iOS 5, but the view no ...
0
votes
0answers
57 views

identity inspector doesn't show choices for connecting a class to tableviewcontroller

I added a tableviewcontroller to my story board. I have two regular viewcontrollers currently and i've been able to in the identity inspector go to custom class, click the down arrow next to the ...
0
votes
0answers
47 views

Interface Builder: in ios 5, window object hides view controller

This problem is not a big deal, still I'm curious as to why it happens and I can't find much on the Apple's developer area. Basically, I have a simple app whose MainWindow contains a ...
0
votes
1answer
13 views

IBOutlets set up and working correctly are suddenly all shown as “!” in interface builder

While updating a UIViewController, all my IBOutlets are suddenly not registering with Interface builder. (note: i did not change any of these outlets in the .m file) The class in the identity ...
0
votes
2answers
105 views

UITableViewController Xib not being used in iOS5 (working in iOS 6)

I have several ViewControllers which subclass UITableViewController and have a Xib file where I set the TableViews appearances (style, colours etc) and add a header and footer. There xib files do not ...
0
votes
0answers
564 views

UIView Auto-resize with margin for iPhone 5

Currently I am programming an iPhone app (not universal), which should work on iOS 5+, meaning I cannot use the iOS6 only feature Auto-Layout. I wish to solve the difference in height by struts and ...
1
vote
2answers
1k views

Dynamic positioning of iOS objects in a Storyboard

I'm having a hard time figuring out how to dynamically position objects in a DetailView storyboard. For starters, the app follows a traditional blog format, in which the MasterView is a UITableView ...
0
votes
0answers
32 views

Copied Project Code to New Project and Xib Outlets Broken

I copied code from one project to a new one. Code compiles fine, but imported .Xib file shows yellow exclamation marks next to each outlet in File's Owner section with the remark ...does not have an ...
1
vote
0answers
43 views

How to prevent UITextViewDelegate added as object to Storyboard Scene from being deallocated? ARC

I have a fairly straightforward app with a couple UITextFields that should only have positive numbers in them (some integers, some decimal). I created two UITextViewDelegates to perform validation on ...
1
vote
1answer
1k views

iOS Storyboard How to access the controls and add event handlers, and binding data to controls added on Storyboard

I used to create the UI thru code. But now I have to use storyboard. I am confused about how to add the event handlers to the controls added on the storyboard and how to bind the data dynamically to ...
1
vote
1answer
316 views

Storyboards: A loop of Modal Segues?

I want to implement something using Storyboards, but I don't know the best way to accomplish it. I don't want to use a Navigation Controller, since I don't want the navigation bar at the top. I just ...
0
votes
1answer
760 views

CrashReport from Hockey, awkward Stacktrace with NSPlaceholderDictionary

got some strange stack trace from an app i developed. here the stack trace: Exception Type: SIGTRAP Exception Codes: #0 at 0x312b1848 Crashed Thread: 0 Application Specific Information: *** ...
-1
votes
2answers
221 views

Stuck with initWithNibName

I have created an app using storyboards. There are two view controllers first view or initial view is UnifeyeMobileViewController and the second view controller is called the SecondViewController. ...
0
votes
3answers
219 views

IBAction or [UIButton addTarget:action: forControlEvents:] for UIButton created in .xib file? Which is the better approach?

What is the better approach if we are creating a UIButton in the .xib file using the Interface Builder, is it better to use IBAction method to define its Action Method and the required Control Event, ...
0
votes
4answers
896 views

Infinite loop when overriding initWithCoder

I have a ViewController with some controllers and some views. Two of these views (Grid Cell) are other nibs. I've got outlets from the Grid Cells to File's Owner, but they aren't loaded automatically. ...
2
votes
1answer
83 views

How to force an element in a view to be non-transparent when parent view has alpha set to translucent

I have a view that is slightly translucent, I set the alpha to about .75 and it contains a button as a sub element. I want the button to be completely opaque and I set the opaque property in IB but ...
1
vote
1answer
79 views

Button Displays Under Cells in Custom UITableViewCell

I have an app that uses a custom UITableViewCell to display detail information after a user clicks on a given row in a table. I can't seem to figure out why the "Reply" button located in the cell is ...
0
votes
0answers
65 views

IB created view controller doesn't display in programmatically tabbarcontroller

I am subclassing my tabbarcontroller like this (idevrecipes, instagram like tab bar) problem is : I want to display ViewControllers that I can design both with IB and a .h & .m. So created my IB ...
0
votes
1answer
386 views

CAShapeLayer with CAShapeLayer sublayer slow

I have a UIScrollView with CAShapeLayer sub layer that renders a simple line. The CAShapeLayer sublayer has its own sub CAShapeLayer. This causes scrolling and zooming to be slow. The hierarchy is ...
5
votes
2answers
1k views

Should new iOS developers use Storyboard and Xibs/Nibs?

I'm an experienced C/C++ Windows developer writing my first real iOS application. Since I don't really have to worry about backward compatibility, I decided to jump in and use the new Storyboard ...
0
votes
1answer
239 views

Changing SearchDisplayController Delegate in interface builder

I'm trying to show a search bar above a table with a list of recent searches that will swap to matching search results once someone enters a search term. I want to set a custom class ...
1
vote
2answers
2k views

UITextField placeholder font color white iOS 5?

I have a problem in a XIB. The color of my placeholder color is default gray in interface builder but when i run the app the color of the text i white, and I'cant see it because the background is ...
0
votes
1answer
340 views

Are Images assigned in a xib cached?

If I assign an image to a UIImage view in a xib, is that image cached so that if I access the image using UIImage imageNamed: I am getting cached Image data? I'm using iOS 5.1
0
votes
3answers
2k views

Force Interface orientation Landscape on a viewController when the rest of the application is in portrait mode

Good evening all! I am developing an application in Portait orientation and i was wander if there is a way for me to change the orientation of only one view to landspace left without messing with the ...
2
votes
1answer
436 views

UITabBarController functionality with UITabBar

I'm making an app with interface builder using storyboarding. I want to have a tab bar where no item is selected. This can be accomplished by setting TabBar.SelectedItem = null; But if you try to ...
13
votes
2answers
3k views

Do I have to call addSubview after calling addChildViewController?

I'm trying to create a container view controller using iOS5 and new methods like addChildViewController. Do I have to call addSubview after calling addChildViewController? Do I have to call ...
1
vote
0answers
137 views

When using addChildViewController or creating container VC, does the parent have a XIB or View?

I'd like to create a container view controller using new iOS 5 methods (like addChildViewController) Must this parent (container) controller have a XIB file with a view? or just having .h and .m files ...
2
votes
1answer
196 views

Launch Storyboard from within Nib?

I am looking at rebuilding the settings section of my app using the new functionality provided by storyboards. Not wanting to touch the rest of my app at this point, so my main NIB will be staying. ...
0
votes
2answers
212 views

Show a message on top of a UITableView

I have a UITableView which is backed by a NSFetchedResultsController. I would like to display a message on top of the list, e.g. "Showing items filtered by XYZ". I tried inserting a UIView with a ...

1 2
15 30 50 per page