Interface Builder is a visual design tool used to create user interfaces for Apple's Mac OS X and iOS platforms.
1
vote
2answers
40 views
simple C++ wrapper for VHDL DFF code
I want to know, how can I write a C++ wrapper for a simple VHDL D-flip-flop code. The code can be as follows:
entity DFF is
Port ( D : in std_logic;
CLK : in std_logic := '0';
...
1
vote
2answers
34 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
29 views
Using Interface Builder in Xcode 4.6.2
I have just updated my Xcode to the latest version and the IB is quite different from the version I used before. I've created some IBOutlets and whereas before I could drag from the Files Owner to the ...
0
votes
1answer
12 views
No Visible Interface -TabBarController
I have interesting problem that I could not able to come up any solutions yet.
My problem is I have created tabBarController on my main view Controller and whenever user clicks on one or another, it ...
0
votes
1answer
18 views
How to manipulate the underlying Text View within a Window?
This is a document-based app. I want to manipulate the underlying text view within my window. I set it up as follows:
So I also created an outlet to my document class to manipulate it.
...
1
vote
1answer
19 views
UIScrollView does not work after adding elements to it
I added a scrollview to my view and added the following code in my viewDidLoad-Method:
[scroller setScrollEnabled:YES];
[scroller setContentSize:CGSizeMake(320, 600)];
When i start the app with my ...
1
vote
0answers
9 views
Xcode quickly jump to Action associated with a Control
Is there a quick way to jump to an action associated with a control.
Say there is a button on a XIB file that has an associated action. The way to find the code associated with this is rather ...
1
vote
0answers
17 views
control origin coordinates in interface builder are disabled in xcode 4.6
I'm a newbie to iOS development, and am trying to work through the projects in "Learning iOS Development."
When I drag a control, such as a button, to the grid in Interface Builder in XCode 4.6.2, I ...
0
votes
3answers
34 views
Applying same UI changes to many elements
A problem I often face is how to apply same changes to many UI elements in the same view.
What I'm looking for is something that would work like this Python pseudocode:
def stylize(element):
# ...
0
votes
1answer
39 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
0answers
37 views
Round button size disabled in IB
Is there a way to change the size of a round style button in Interface Builder (OSX project)? I'm trying to achieve something like the Run/Stop button in Xcode toolbar. When I drop a round button onto ...
0
votes
1answer
45 views
Iphone: How do I add a text view that the font size decreases to fit text view size when needed to
I am trying to make a UITextView, where the font size is adjusted to fit the size of text view. For example if you type a lot of text, and it is about to fill up the text view, the text will get ...
0
votes
0answers
8 views
Image folder reference - image not show
I have a problem with some images, I create a folder reference (blu icon) with some subdirectory, I add /Immagini in "User Header Search Path", then in a xib file I add a button and I select an image, ...
0
votes
1answer
42 views
Moving between Storyboard scenes - Segues and Unwind
I hope this makes sense and hopefully you can see in the picture the buttons in the top right of each scene to move to the others.
So far I can move from "Sine Wave" to "Saw Wave" with a modal segue, ...
1
vote
2answers
33 views
iOS - UIViewControllers sharing a screen
I'm writing an app that has two sections like this:
The idea is that on the top half I'm creating a request, and on the bottom I'm displaying the results. As my UIViewController subclass grows and ...