0
votes
0answers
9 views
UIPickerView with Multiline UILabel
I'm currently working on a program that populates a picker view dynamically from my Core Data set up. I have everything working data-wise but the problem i'm running into now is formatting on my …
1
vote
1answer
37 views
Button background setting
This question is almost embarrassing to ask, but I can't find the answer in any documentation.
I have a UIButton in a view. In IB, I set the button's background to a colour. The original rectangle …
1
vote
2answers
24 views
Can I limit the character set for a UITextField?
I have a bitmap font which which doesn't have every single character, such as accented characters (é î ü etc) or symbols such as "¥" or © which I'm using to display usernames in a Highscore table for …
1
vote
6answers
76 views
How can I send two arguments in a selector method?
In the following, how can I send two arguments in togButton method? I tried, but it did not work.
[button addTarget:self action:@selector(togButton:)
…
0
votes
1answer
17 views
Strange delay with Navigation Controller behaviour
I have the following set up in a navigation controller.
The root is a list of categories (banks, hotels etc) and each category has a child view below it containing a table view of items (Bank A, Bank …
0
votes
0answers
15 views
Maintaining proportions when autorotating custom UIView
This is probably either real easy, real dumb, or my google fu has taken a serious turn for the worse. Anyway, I'm implementing custom view for my app, which is using pure CGContext drawing, no …
0
votes
2answers
23 views
Converting between unique NSIndexPath and unique NSUInteger (or int)
Is there a better way than what is proposed here to create a one-to-one mapping between an table view cell's NSIndexPath and a unique NSUInteger or int, in order to create a unique tag property value …
1
vote
1answer
17 views
How to switch to a different UITabBarItem on UIButton touch up inside
I have a UITabBarController as my MainWindow.xib. I have 3 tab bar items on the tab bar. On the second tab bar item, i have placed a UIButton. When the user taps the button, i want to be able to …
0
votes
2answers
40 views
Why the height of main window is 480 instead of 460 with status bar
Shouldn't it be 460 when the status bar whose height is 20 is shown?
So it turns out that the status bar is ON the main window instead of ABOVE it?
In contrast, view height is set to 460 in IB when …
0
votes
1answer
36 views
Can you change the cursor color in a UITextView?
Is it possible to override the color of the cursor and autocorrection bubbles in a UITextView? This is done in the built-in Notes application, but I don't know if it was done by public means or not.
…
0
votes
0answers
8 views
Custom mapkit view zoom
I have mapkit view and other view as subview of map. I need to catch double click on other view and allow to move and zoom(by pinching) map view.
How i can do it?I must to subclass of MKMapVeiw and …
0
votes
1answer
55 views
Asynchronous image load into TableView cell
Im trying to load a single image into the grouped table cell. I found a piece of code on the internet and modified it. Original code is using UIViews to display image, which is not what I need, …
0
votes
2answers
74 views
UISegmentedControl without rounded corner?
Is there a way of get rid of UISegmentedControl's rounded corners or it is the default behavior?
0
votes
1answer
33 views
Is this a UIKit bug?
I am not sure if this bug really comes from my app or maybe really is a UIKit bug. Maybe someone here can clarify this.
There is a tableview. Each cell offers a disclosure-button to a "settings"-like …
1
vote
2answers
56 views
Block touch propagation to other view
Hy, I have a childe view that put it self over other brother views. The problem is that when i touch it the brother also reacts at the touch event. How can I disable touch propagation on the …
