Tagged Questions
0
votes
1answer
41 views
iOS. Could I made custom view for UIScrollView in Interface Builder?
I have a UIViewController, there is a "static" part in the View, and the scrolling part (UIScrollView). I know that I must add some View to the UIScrollView.
It's possible to make this View in code ...
0
votes
1answer
21 views
iOS - Interface Builder - Adding elements as subviews to a UIView
In interface builder I have a viewController and It's main view (view A). I have added another UIView (view B) onto the main view and now I would like to add more elements to view B but I want Xcode ...
0
votes
1answer
26 views
iOS - Interface Builder - subviews not inheriting superview alpha
In Interface Builder, I have laid a UIView on the the main view of a ViewController.
On that UIView I have added a number of elements so that when I reduce the alpha of that view to 0,
all of the ...
0
votes
2answers
48 views
Interface building - UIViews vs Images vs Core graphics vs PDF subclass
My app uses flat graphics, which mostly consists of lines and flat surfaces...
Whats the best approach for building the UI?
use PNG images as much as possible (like for the attached picture, the ...
0
votes
1answer
44 views
UIView subclass in XIB doesn't display (drawRect: never called)
I am designing a custom view controller in interface builder with a XIB file and I have a custom UIView subclass that I want to add to my view controller. Here is how I've put my custom view into the ...
1
vote
3answers
93 views
UIScrollView is cut off from UITabBarController
I have a UIScrollView that I place inside of a view (interface builder document .xib/.m/.h), however the lower portion of the UIScrollView is getting clipped and not showing the lower half of itself ...
0
votes
1answer
88 views
Dynamic uiview layout with auto layout
I'm working with autolayout and its been going very well so far but right now I am at lost as to the way to proceed to achieve the design I want.
I got a a small questionnaire with 2 sections. Each ...
0
votes
2answers
52 views
UIView disappears after calling UIActivityViewController
I have two subviews in my view controller, both embedded in a UIScrollview. One of them is a subclass of UIView and the other created in interface builder with buttons etc in it, but also referenced ...
0
votes
3answers
181 views
How to connect multiple buttons in a storyboard to a single action?
I'm currently using Xcode 4.6 and I'm simply wondering how to select multiple buttons across different UIViews, but under a single view controller. CMD clicking doesn't seem to work. I need this ...
0
votes
0answers
24 views
How can I add external view
I was looking for a way to reuse a UIView, and found this answer there is an explanation about an external view, but i'm struggling to find how to add the external view into the storyboard.
0
votes
2answers
314 views
Resize UILabel dynamically and reposition UIViews below it using Interface Builder
I have a UILabel that can contain any number of lines with a constrained width. I have no problem resizing a UILabel to fit the given text, however, I am implementing a 'View More...'/'View Less...' ...
0
votes
1answer
40 views
why IB sometimes doesn't add a subview to a view controller
Sometimes IB simply doesn't allow you to add a view as a subview to a UIViewController as illustrated here
If I drag a UIViewController from the object library and try to embed it within Mailbox ...
0
votes
1answer
72 views
UIImageView / UIButton autoresize to wrong frame value on second and consecutive view
I have an application that contain UITabBar and UINavigationBar that looks like this:
Inside the view, I have 2 subviews that occupy top half (red color) and bottom half (green color) equally, ...
1
vote
2answers
43 views
Cloning a uiview defined in interfacebuilder?
I have a UIView created in interaface builder that is a subview of a scrollview. the UIView contains a button and a label. I would like to use this view as a cookie cutter so I can generate various ...
2
votes
1answer
151 views
Loading XIB file without a UIViewController
I'd like to design a UIView and some sub-views (UIWebView, UIToolbar, some UIBarButtonItems, a progress indicator and so-forth) using the Interface Builder, but I think it's unnecessary to do this ...