UIKit is the object-oriented framework that is responsible for most of the iOS user interface.
217
votes
7answers
56k views
UIImagePickerController, UIImage, Memory and More? [closed]
I've noticed that there are many questions about how to handle UIImage objects, especially in conjunction with UIImagePickerController and then displaying it in a view (usually a UIImageView). Here is ...
187
votes
18answers
56k views
How do I vertically align text within a UILabel?
I have an UILabel with two lines. Sometimes, when the text is short enough, this text is displayed in the vertical center of the UILabel.
How do I vertically align my text at the top of the UILabel?
...
71
votes
7answers
20k views
How do I [legally] get the current first responder on the screen on an iPhone?
I submitted my app a little over a week ago and got the dreaded rejection email today. It reads as follows:
Dear -----------,
Thank you for submitting --------- to the App Store. ...
69
votes
3answers
32k views
UIView's frame, bounds, center, origin, when to use what?
UIView has the concept of frame, bounds, center, and origin, and they all seem to be interrelated. Most of the time, I deal with frame when setting the position and size of a UIView (or subclass). I ...
65
votes
2answers
13k views
Dispelling the UIImage imageNamed: FUD
I see a lot of people saying imageNamed is bad but equal numbers of people saying the performance is good - especially when rendering UITableViews. See this SO question for example or this article on ...
55
votes
7answers
38k views
How do I size a UITextView to its content?
Is there a good way to adjust the size of a UITextView to conform to its content? Say for instance I have a UITextView that contains one line of text:
"Hello world"
I then add another line of text:
...
37
votes
5answers
26k views
Is there any ready-made calendar control for iPhone apps?
I am building an applicaiton for the iPhone that will display upcoming and past events. I settled for a list view, but then I realized that a calendar (just like the one displayed in the "month" view ...
30
votes
1answer
741 views
iMessage Style Receding Keyboard in an iOS App
I've been wondering if it is possible to replicate the behavior of Apple's iOS5 keyboard in the messages app, without using any private API calls. When you scroll down past the keyboard in the ...
30
votes
2answers
14k views
How can I add CGPoint objects to an NSArray the easy way?
I have about 50 CGPoint objects that describe something like a "path", and I want to add them to an NSArray. It's going to be a method that will just return the corresponding CGPoint for an given ...
28
votes
8answers
11k views
What's the point of NSAssert, actually?
I have to ask this, because: The only thing I recognize is, that if the assertion fails, the app crashes. Is that the reason why to use NSAssert? Or what else is the benefit of it? And is it right to ...
26
votes
1answer
18k views
Using HTML and Local Images Within UIWebView
I have a UIWebView in my app which I want to use to display an image which will link to another url.
I'm using
<img src="image.jpg" /> to load the image.
The problem is that the image ...
26
votes
9answers
17k views
How do you add multi-line text to a UIButton?
I have the following code...
UILabel *buttonLabel = [[UILabel alloc] initWithFrame:targetButton.bounds];
buttonLabel.text = @"Long text string";
[targetButton addSubview:buttonLabel];
[targetButton ...
26
votes
15answers
30k views
How to change UIPickerView height
Is it possible to change the height of UIPickerView? Some applications seem to have shorter PickerViews but setting a smaller frame doesn't seem to work and the frame is locked in Interface Builder.
25
votes
3answers
32k views
View Controllers: How to switch between views programmatically?
In short: I want to have two fullscreen views, where I can switch between view A and view B. I know I could just use an Tab Bar Controller, but I dont want to. I want to see how this is done by hand, ...
22
votes
6answers
17k views
Custom animation for pushing a UIViewController
I want to show a custom animation when pushing a view controller: I would like to achieve something like an "expand" animation, that means the new view expands from a given rectangle, lets say ...
22
votes
4answers
6k views
Do I have the right understanding of frames and bounds in UIKit?
Let me try to explain it. Please tell me if I am wrong. I am just 70% sure about it.
Like I understand it, an UIView has a frame and an bounds rectangle.
The job of the frame rectangle is to set the ...
21
votes
6answers
30k views
How to Rotate a UIImage 90 degrees?
I have a UIImage that is UIImageOrientationUp (portrait) that I would like to rotate counter-clockwise by 90 degrees (to landscape). I don't want to use a CGAffineTransform. I want the pixels of the ...
21
votes
4answers
10k views
How to lose margin/padding in UITextView?
I have UITextView view in my Iphone application which displays large text and I am paging that text with offset margin, but the problem is, that it has some kind of margin or padding and it messes up ...
20
votes
6answers
487 views
Hundreds of accesses to “InputModeProperties.plist” are lagging my game (iPhone)
i have a weird problem with a bugfix for Tiny Wings. In my game i use something like:
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
[userDefaults setFloat:musicVolume ...
20
votes
5answers
13k views
UITableViewCell: How to prevent blue selection background w/o borking isSelected property?
I have a custom UITableViewCell subclass. I have set the contentView of my cell subclass to
a custom UIView class in which i am overriding -drawRect: and doing all of the drawing there.
Also, I am ...
19
votes
5answers
21k views
How can I get a precise time, for example in milliseconds in Objective-C?
Is there an easy way to get a time very precisely?
I need to calculate some delays between method calls. More specifically, I want to calculate the speed of scrolling in an UIScrollView.
18
votes
1answer
7k views
How can I add an boolean value to an NSDictionary?
Well, for integers I would use NSNumber. But YES and NO aren't objects, I guess. A.f.a.i.k. I can only add objects to an NSDictionary, right?
I couldn't find any wrapper class for booleans. Is there ...
17
votes
1answer
9k views
Adding the “Clear” Button to an iPhone UITextField
How do you add that little "X" button on the right side of a UITextField that clears the text? I can't find an attribute for adding this sub-control in Interface Builder in the iPhone OS 2.2 SDK.
...
16
votes
5answers
4k views
Great UIKit/Objective-C code snippets
New to Objective-C iPhone/iPod touch/iPad development, but I'm starting to discover lots of power in one-liners of code such as this:
[UIApplication sharedApplication].applicationIconBadgeNumber = ...
16
votes
3answers
4k views
Adding view on StatusBar in iPhone
Is it possible to add a UIView on the staus bar of size (320 x 20) ?
I dont't want to hide the status bar , i only want to add it on top of the status bar.
Thanks
15
votes
6answers
7k views
Why do I have to call super -dealloc last, and not first?
correct example:
- (void)dealloc {
[viewController release];
[window release];
[super dealloc];
}
wrong example:
- (void)dealloc {
[super dealloc];
[viewController release];
...
14
votes
3answers
9k views
Landscape Mode ONLY for iPhone or iPad
I want to create an application that doesn't use Portrait mode.
I am not sure if I need to edit the plist or have code in addition to the plist
14
votes
1answer
8k views
How to draw border around a UILabel?
Is there a way for UILabel to draw a border around itself? This is useful for me to debug the text placement and to see the placement and how big the label actually is.
14
votes
1answer
5k views
Laying out & sizing of subviews in a UIViewController
I have an app with with a UITabController and each tab is a UINavigationController. The root of one of my UINavigationControllers is a UIViewController.
Inside that view controller's view, I want to ...
14
votes
5answers
23k views
Custom UISegmentedControl
How do I make a custom UISegmentedControl?
I have 2 images, 1 that should be displayed when the segment is active and the other if the segment is inactive. Can i override the style or something so i ...
13
votes
4answers
10k views
Are there any good UIScrollView Tutorials on the net?
Any good links are highly appreciated! This goes to community wiki.
12
votes
1answer
3k views
“Creating precompiled collator because collator is out of date”
I am trying to "self-destruct" a view controller by doing [[self navigationController] popViewControllerAnimated:YES].
Before I do this, I also present an UIAlertView.
The first time I do this, I ...
12
votes
1answer
2k views
UIColor `-colorWithPatternImage:` alpha blending problem solution. (iOS SDK 4.1)
Solution note, not a question.
I used this code to set background as a pattern image:
UIImage *bg = SomeImage();
UIColor *bgc = [UIColor colorWithPatternImage:bg];
[self ...
12
votes
3answers
3k views
Get height of UITableView without scroll bars
I need to get the full height of a UITableView (i.e. the height at which there would be nothing more to scroll). Is there any way to do this?
I've tried [tableView sizeThatFits:CGSizeZero], but that ...
12
votes
3answers
7k views
viewWillDisappear: Determine whether view controller is being popped or is showing a sub-view controller
I'm struggling to find a good solution to this problem. In a view controller's -viewWillDisappear: method, I need to find a way to determine whether it is because a view controller is being pushed ...
12
votes
13answers
11k views
IPhone - After dismissing Modal View Controller - gap is left at top of page
When starting the app, if the user doesn't have login information stored, I want to display a modal view controller to force the entry of this information. I found through trial and error, that this ...
12
votes
8answers
5k views
Light gray background in “bounce area” of a UITableView
Apple's iPhone apps such as Music and Contants use a search bar in a UITableView. When you scroll down so that the search bar moves down, the empty space above the scroll view's contents has a light ...
12
votes
4answers
6k views
Retrieving a pixel alpha value for a UIImage
I am currently trying to obtain the alpha value of a pixel in a UIImageView. I have obtained the CGImage from [UIImageView image] and created a RGBA byte array from this. Alpha is premultiplied.
...
11
votes
3answers
2k views
UIView “suck” animation
I'd like to use the UIView "sucking" transition (view is "sucked" into a point) referenced here:
http://iphonedevwiki.net/index.php/UIViewAnimationState#Using_suckEffect
The method above, however, ...
11
votes
1answer
3k views
UITableView didSelectRowAtIndexPath: not being called on first tap
I'm having an issue with UITableView's didSelectRowAtIndexPath.
My table is setup so that when I select row it initializes a new view controller and pushes it.
The first time I tap any row in the ...
11
votes
5answers
16k views
UITableView: deleting sections with animation
Update
I have posted my solution to this problem as an answer below. It takes a different approach from my first revision.
Original Question
I previously asked a question on SO that I thought ...
10
votes
3answers
1k views
UIKit: UIScrollView automatically scrolling when a subview increases its width past the edge of the screen
In the context of the iPhone:
I have a UIScrollView containing a UIImage. When the user taps the screen inside the UIImage, a UITextField is added where the user touched. The user can edit this ...
10
votes
5answers
6k views
How to disable the highlight control state of a UIButton?
I've got a UIButton that, when selected, shouldn't change state when being touched.
The default behaviour is for it to be in UIControlStateHighlighted while being touched, and this is making me angry.
...
10
votes
1answer
8k views
unichar and NSString - how interchangeable are these?
There is an NSString method -characterAtIndex: which returns an unichar.
(unichar)characterAtIndex:(NSUInteger)index
I wonder if this unichar, which obviously is not an NSString, can be ...
10
votes
2answers
3k views
Is there a way to remove the separator line from a UITableView?
I'm looking for a way to completely remove the separator line in a UITableView when in the plain mode. This is done automatically in grouped, but this also changes the dimensions of the table in a way ...
10
votes
3answers
6k views
iPhone: Tracking/Identifying individual touches
I have a quick question regarding tracking touches on the iPhone and I seem to not be able to come to a conclusion on this, so any suggestions / ideas are greatly appreciated:
I want to be able to ...
10
votes
6answers
5k views
Checking if a UIViewController is about to get Popped from a navigation stack?
I need to know when my view controller is about to get popped from a nav stack so I can perform an action.
I can't use -viewWillDisappear, because that gets called when the view controller is moved ...
9
votes
5answers
4k views
iphone, dismiss keyboard when touching outside of textfield
I'm wondering how to make the keyboard disappear when the user touches outside of the textfield?
9
votes
1answer
307 views
UISlider ignores alpha when set to 0.5
Why does the UISlider view ignore the alpha view when set to 0.5?
Code:
for (int i = 0; i < 3; i++) {
UISlider *slider = [[[UISlider alloc]
initWithFrame:CGRectMake(0, i ...
9
votes
3answers
5k views
iPad title bars. Navbars or toolbars?
I see a bunch of apps for iPad with really cool title bars. These seem to be a combination of a navigation bar and a toolbar. They usually have a back button and a title as well as men other buttons. ...