Tagged Questions
1
vote
2answers
78 views
How to add a button on the Google maps in iOS?
I am new to iOS Programming and I have downloaded the google maps sdk for iOS and followed the instruction on their website ( as shown in this link
...
0
votes
0answers
20 views
What could cause this kind of error when inserting into a collection view?
I get a really disgusting error when inserting into a collection view. I use autolayout, and everything has been setup through interface builder.
Error is here as was too big to paste.
Has anyone ...
0
votes
0answers
44 views
UISegmented control change the background image
I am trying to change the background image of my UISegmentedControl bar. Tried doing this but I had no success in changing the background.
right now I tried the code
UIImage *img = [[UIImage ...
1
vote
2answers
36 views
Is it possible to 'hyperlink' text within a UILabel/TextView but activate a segue on tap of this 'hyperlink'?
I say 'hyperlink' because I don't know what else to call it, and that is how i'd like it to appear.
Obviously this is possible using a combination of labels and buttons, but my labels and buttons ...
3
votes
1answer
117 views
CGRectMake doesn't work for custom frames in viewDidLayoutSubviews
This is the code I'm using:
-(void)viewDidLayoutSubviews{
CGSize screenSize = [[UIScreen mainScreen] bounds].size;
if (screenSize.height <= 480.0f) {
self.img.frame = ...
0
votes
3answers
165 views
Is it possible to design native iOS user interface with the CSS?
I'm interested in such a thing - are there some tools, libraries, etc which will allow to design native iOS UI (UILabels margins, etc.) with the help of CSS? I am not talking about libraries such as ...
0
votes
1answer
30 views
Is it possible to set a UIImageView as the background of a prototype UITableViewCell in Interface Builder?
If I set a UIImageView as the backgroundView of a prototype cell of a UITableView in Interface Builder, then create a table with more than one row using the prototype, then only the last created cell ...
1
vote
3answers
83 views
Should outlets have getters/setters?
Should I better always write
@interface MyClass
{
NSTextField * myTextField ;
}
@property (assign) NSTextField * myTextField ;
or just
@interface MyClass
{
...
1
vote
1answer
89 views
Custom UIView in Interface Builder / Cross Platform
I have a control library for iOS and Mac OS. It's implemented as follows:
#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
@interface MyCustonControl : UIControl
...
@end
#else
#import ...
2
votes
2answers
381 views
How to create Navigation bar with back button to the left?
In my app I am trying to navigate from the Second ViewController to the First ViewController using a Navigation Bar Back Button, but while dragging and dropping the navigation bar onto the ...
1
vote
1answer
72 views
Way to design a Dialog with 3 rows on iOS - multi language usable
I'm trying to create a view (normal Single View) in iOS which contains 3 Labels and 3 Text fields.
The App should be able for multi language use.
I want to have to following layout:
Label | ...
0
votes
1answer
267 views
Problems when trying to support 3.5 and 4 inch screen of iPhone
I started the development of a new app on the iPhone 5 and now I also have to add support for 3.5 inch screens. As you know, there is more space for content on a 4 screen than on a 3.5 screen.
When I ...
2
votes
1answer
154 views
How to add a label and image view to a toolbar and set the properties in code
I would like to show a label (UILabel and an image view (UIMageView) on a toolbar (UIToolbar). In Interface Builder, I have added a bar button item (UIBarButtonItem) for each of these views and have ...
0
votes
2answers
153 views
UIButton fails to activate 'touch up inside' on a first gen iPad, works on second gen
Question
I have a .xib with a UIButton. That UIButton has a connection via Touch Up Inside to a method, - (IBAction)play:(id)sender, in the File's Owner.
When I run on a first-gen iPad the ...
4
votes
3answers
116 views
How to store auxiliary information inside a UIButton, via Interface Builder?
I am building a custom keyboard, in which there are about 50 UIButton keys. I'd like to put some grouping information for each key, e.g., numbers, alphabets, cursors, etc.
The first thing comes to ...
3
votes
1answer
138 views
Is it documented anywhere that the array `instantiateWithOwner` returns is ordered in a specific way?
I've lately seen some code sample that used instantiateWithOwner to load the cells for a UITableView this way:
cell = [nib instantiateWithOwner:self options:nil][0];
while it's cleaner and more ...
4
votes
2answers
2k views
Xcode 4 and Interface Builder: Editing Vertical Spacing Constraint (Anchor Top, not Bottom)
I've got a widget that is not laying out correctly on device (its looks OK in IB, but its not quite right). The widget is a label and its located about mid-screen. Interface Builder gave it a Vertical ...
-2
votes
3answers
331 views
IBOutletCollection of UIViewControllers
I want to do something like UITabBarController. UITabBarController has property viewControllers into which I can add instances of UIViewController * in IB. I'm trying to do the same think with my own ...
0
votes
1answer
173 views
How to use Auto-Layout when you have static background images for different screen sizes?
I have a Universal app that has a different static background image for
iPhone 4,4S
iPhone 5
iPad
This static background image is very specific (it is not a texture, or solid color, there are ...
0
votes
1answer
64 views
How to create\implement two and more File's Owners in Interface Builder? And does it even possible?
I have two .xib files and two classes : one describes custom table view cell and other tableview with several custom controls and they both have IBActions and IBOutlets for those controls. I have ...
0
votes
2answers
848 views
Can I use setFrame and autolayout on the same view?
I want to add padding to all of my buttons, so I subclassed UIButton, and among other changes, I wanted to add a fixed padding by using setFrame:. Everything was working, except for setFrame. I ...
0
votes
1answer
47 views
tab bar inheritance behaviour
I have a tab bar controller. The first item of the tab bar is table view controller, and it is getting the tab bar itens from the parent tab bar controller. Now I'm connecting a view controller to the ...
1
vote
1answer
113 views
Is there a tutorial somewhere about designing a really large view and put it in scrollView using storyboard
The question may be similar with
Designing inside a scrollview in xcode 4.2 with storyboards
but none of the answer there makes sense at all.
Okay I created a new controller and I added a ...
0
votes
1answer
86 views
Custom Cocoa touch control and initialization
I have designed a nice custom control CustomUIView as a subclass of UIview, with a nice initialiser that takes in 8 parameters. I made it to be the designated initializer to make sure, any user will ...
0
votes
1answer
82 views
Modify a UINavigationViewController's UIToolBar from InterfaceBuilder
I have a UINavigationViewController, and from InterfaceBuilder I added a ToolBar clicking on Attributes Inspector / Navigation Controller / Shows Toolbar
My RootViewController shows a ToolBar with a ...
0
votes
1answer
473 views
How to display UIScrollView scrollbar/s permanently instead of just flashing?
The app I am building for an iPad has multiple text fields. So I had to use a scrollview. I would like to display the scrollbar/s permanently so that the user knows there are some more fields at the ...
0
votes
1answer
142 views
Subclassing with Delegates and IBActions
Let's assume I have the following class GenericMoviePlayer which has the following Outlets:
PlayButton
PauseButton
DoneButton
Those IBOutlets have their corresponding IBActions:
- (void) ...
1
vote
1answer
365 views
Xcode: Is there a way to change line spacing (UI Label) in interface builder?
I've got several UILabels with multiple lines of text, but the line spacing is larger than I would prefer. Is there any way to change this?
3
votes
1answer
600 views
Can you set UIEdgeInsets through Interface Builder?
I want to make a stretchable button with rounded corners that don't skew. Currently I'm doing it programatically like so:
[self.myButton setImage:[[UIImage imageNamed:@"my-button"] ...
2
votes
0answers
164 views
Is it possible to use custom iOS controls from a MonoTouch class library in Xcode (Interface Builder)?
I am trying to move custom iOS controls from the main MonoTouch project to a MonoTouch class library in order to re-use them in other MonoTouch projects.
However, when I try to replace the class ...
0
votes
1answer
51 views
Do I have to use buttons?
I am making an app. It is kind of a hide and go seek. I was thinking about sectioning off separate areas and having the app say something different as to where you touched the screen. It will give you ...
0
votes
0answers
78 views
assertion failure with UIStepper
I am working on Xcode 4.3.3 and trying to use a UIStepper with interface builder. While trying to set minimum value = 0, maximum value = 10,000 , step value=100 and current value = 5000. I am getting ...
0
votes
2answers
174 views
method with custom return type?
how do I create a method with custom return type??
I basically want to return "View Controller" and further use the same method as IBAction in interface builder and point to a button...
I basically ...
0
votes
1answer
66 views
can I use below method as an IBAction
can I use below function as an IBAction - on a button click ? if YES then please tell me how...
-(UIViewController *)pageViewController:(UIPageViewController *)pageViewController
...
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 ...
2
votes
1answer
85 views
Is it possible to search static cells in UITableview?
I have a UITableView with static cells made through Interface Builder.
Is it possible to search through these cells using a search bar? I have been trying to implement it but can't seem to get ...
0
votes
2answers
911 views
How to change the size of text fields when turned to landscape Xcode
I am creating an iPad app which is a form with mostly text boxes. When the iPad is portrait, it displays the text fields vertically in two columns. When I turn the iPad landscape, it still displays ...
0
votes
3answers
294 views
loadNibNamed loads to different IBOutlets?
I have a very weird problem and has not been able to solve it yet.
This class is defined:
@interface EngineViewController : UIViewController
{
}
@property (nonatomic,readonly) IBOutlet GameView* ...
0
votes
1answer
184 views
Can't load view from an external xib?
The project i'm using is the sample code named "Tabster" provided by Apple.
I can load a view from a external xib by this:
In MainWindow.xib, drag a view controller to the tab bar controller.
File ...
3
votes
1answer
2k views
How to design the content of a UIScrollView in a nib easily
I have a scrollview which has to display a view larger than the available display area.
I want to easily design the user interface without moving the embedded view up and down every time I have to do ...
0
votes
3answers
268 views
What does it mean to delegate to File Owner in my xib file?
I believe that UIView objects can delegate control to views in iOS programming. However, I thought this was already handled by an IBAction associated with an IBOutlet corresponding to the UIView.
In ...
1
vote
2answers
131 views
Why are two different UIToolbars, defaulting to different styles?
Consider the following two toolbars that are in the same project of mine:
Notice that these toolbars look different? The problem is that they were both created by dragging and dropping them into ...
2
votes
1answer
141 views
What's meant by File's Owner exactly?
What is meant by "File's Owner"? The XIB interface says it's UIApplication, but why is it named so? Which file does it own? I understand MVC to some extent, but I never heard of "File's Owner". What ...
1
vote
3answers
233 views
Replace the UIImageView with UILabel in a UITableViewCell
I want to create a UITableViewCell that is very similar to the standard UITableViewCell with the UITableViewCellStyleSubtitle. The user is able to select a cell and the a checkmark should be set on ...
1
vote
1answer
294 views
How should one create UINavigation toolbar subview items Interface Builder?
This blog post asks the very question I have: How can one visually manage toolbar items in Interface Builder? Sure one can use this technique for the top level view, but what about other views? Is ...
2
votes
1answer
1k views
Load UITabBarController from XIB doesn't contain anything from the XIB
I'm working on a project that started out as a TabBarController-based app, and still mostly is, but some requirements have changed and we need to put in an initial view controller as an entry point to ...
0
votes
2answers
2k views
In iOS, what's the best way to implement sliding “drawers”
I'm not sure if "drawer" is the right term, but I'm wanting to find out how to implement dialogs that slide out from under an element and push the other content on the view down.
Good examples are ...
1
vote
0answers
66 views
Are cross-controller outlets with the storyboard paradigm possible?
For a small Cocoa Touch application for the iPhone I would like to use the interface builder as lightweight dependency injection.
To accomplish this, I would either need to create a "global" object ...
0
votes
3answers
1k views
How to set size of UITableView inside Interface Builder?
Is it possible to change the frame of UITableViewController's UITableView frame inside Interface Builder? I want to make my table, which I instantiate in IB, a little bit narrower.
3
votes
1answer
2k views
Storyboards and Table View Sections
I've noticed that in Storyboards, when dragging out a Table View object from the Library, you also get a chance to configure table view sections, and bunch of other options. For example, if the ...


