active questions tagged uikit - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-10T06:24:10Z
http://stackoverflow.com/feeds/tag/uikit
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/1842219/can-you-change-the-cursor-color-in-a-uitextview
0
Can you change the cursor color in a UITextView?
Ian Henry
2009-12-03T19:14:11Z
2009-12-10T02:00:57Z
<p>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.</p>
<p>I can't find any reference to this in any documentation, so I'm worried that it's a private API set in the UIKeyboard or something. Am I missing something obvious?</p>
http://stackoverflow.com/questions/633924/uisegmentedcontrol-behaviour
3
UISegmentedControl Behaviour
Jasarien
2009-03-11T09:58:54Z
2009-12-09T03:14:35Z
<p>Hey guys,</p>
<p>A quick question about the UISegmentedControl class on the iPhone.</p>
<p>Hopefully, some may have noticed how in its default state with 2 segments, the segmented control still will toggle even if the user taps on a segment that is currently selected.</p>
<p>I've seen UISegmentedControls in apps that negate that behaviour and don't toggle when the user presses a selected segment. Namely, Apple's iTune Store app.</p>
<p>Is there a simple way of preventing this behaviour that I'm overlooking, or do I need to write some logic into the valueChanged?</p>
<p>I've been trying to disable currently selected segments and enabling unselected ones, but this seems to change the appearance of the control when I don't want it do.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1865002/uipickerview-with-multiline-uilabel
0
UIPickerView with Multiline UILabel
koushi
2009-12-08T06:30:55Z
2009-12-09T02:38:48Z
<p>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 labels. </p>
<p>The picker is presented with it's own toolbar in an actionsheet with a button on the right side of the toolbar. It's initial state is with 2 dials visible. when the button is pressed it changes to 3 dials. </p>
<pre><code>
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
{
UILabel *pickerLabel = (UILabel *)view;
<code>CGSize limitSize = CGSizeMake(100.0f, 45.0f);
CGSize textSize;
CGRect labelRect;
NSString *title = @"";
switch (numberOfComponents){
case 2:
{
...gets strings from fetched data (varying length from 4 to 20+)
title = someString
}
case 3:
{
...same as above but for the second set of data.
title = someString
}
}
textSize = [title sizeWithFont:[UIFont systemFontOfSize:14] constrainedToSize:limitSize lineBreakMode:UILineBreakModeWordWrap];
labelRect = CGRectMake(0, 0, textSize.width, textSize.height);
NSLog(@"length:%i title:%@",[title length],title);
NSLog(@"h:%f w:%f",textSize.height,textSize.width);
if (pickerLabel == nil)
{
pickerLabel = [[[UILabel alloc] initWithFrame:labelRect] autorelease];
[pickerLabel setFont:[UIFont systemFontOfSize:14]];
[pickerLabel setBackgroundColor:[UIColor clearColor]];
[pickerLabel setLineBreakMode:UILineBreakModeWordWrap];
[pickerLabel setTextAlignment:UITextAlignmentCenter];
[pickerLabel setNumberOfLines:2];
}
[pickerLabel setText:title];
return pickerLabel;
</code></pre>
<p>}</p>
<p></code></p>
<p>i've manually set the row height at 32.0f. I'm getting very strange results in that some of the Labels in the second component are working perfectly. but others are not wrapping at all, and some are just showing as blank space. </p>
<p>ie: Brussels sprout wraps fine (right component). but Milk and Cream doesn't display (only milk is visible) vegetables doesn't appear at all. Where am i going wrong in my code?</p>
http://stackoverflow.com/questions/1850593/maintaining-proportions-when-autorotating-custom-uiview
0
Maintaining proportions when autorotating custom UIView
roe
2009-12-05T00:35:56Z
2009-12-08T22:33:17Z
<p>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 subviews (for now at least). The thing is, I want it to autorotate, so I have <code>shouldAutorotateToInterfaceOrientation</code> return YES, and voila, the view rotates. But in doing so it's not actually redrawing the content (which I assume is rendered into a texture somewhere in the framework and splashed onto a rect, but that's not really relevant here), the rect is simply stretched, squishing the content. How can I get it to simply issue a draw of a bigger area while rotating? That is, my content is bigger than the screen, and I'd simply like the viewport to change during the rotation.</p>
<p>I've tried setting the view's <code>contentMode</code> to <code>UIViewContentModeRedraw</code>, but that didn't do anything, I've tried playing around with the <code>autoresizeMask</code> stuff, but didn't seem to help either. I've also tried inserting a <code>setNeedsDisplay</code> in <code>willRotateToInterfaceOrientation</code>, however that only caused it to redraw using the new bounds (i.e. squishing it first, and then stretching it out to the right size during the rotation), which is also not what I'd like to see.</p>
<p>Does anyone have any idea how I might go about getting this to work?</p>
http://stackoverflow.com/questions/1371044/what-resolution-should-my-iphone-app-icon-be
0
What resolution should my iPhone app ICON be?
RexOnRoids
2009-09-03T01:41:57Z
2009-12-08T17:23:57Z
<p>What image resolution can/should be used as the icon.png file for an iphone app? I know the size is 57 x 57 but what about the resolution? Links to specific documentation relating to iphone app icon design would also be helpful.</p>
http://stackoverflow.com/questions/1863678/can-i-limit-the-character-set-for-a-uitextfield
1
Can I limit the character set for a UITextField?
gargantaun
2009-12-07T23:43:39Z
2009-12-08T12:50:16Z
<p>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 a game. </p>
<p>Is it possible to limit the UIKit keyboard to certain characters, or only allow certain characters in the UITextField? Or will I have to roll my own input mechanism? I'm thinking and old school, Arcade style, one letter at a time "thing" would be ok.</p>
http://stackoverflow.com/questions/1864328/button-background-setting
1
Button background setting
John R Doner
2009-12-08T03:10:14Z
2009-12-08T05:15:49Z
<p>This question is almost embarrassing to ask, but I can't find the answer in any documentation.</p>
<p>I have a UIButton in a view. In IB, I set the button's background to a colour. The original rectangle in the Identity Inspector shows a half-black, half-white rectangle for the button's background.</p>
<p>I can't find anyway to set the background back to the original setting. Anybody know how to do this?</p>
<p>Thanks in advance for any help.</p>
<p>John Doner</p>
http://stackoverflow.com/questions/1282830/uiimagepickercontroller-uiimage-memory-and-more
42
UIImagePickerController, UIImage, Memory and More!
Itay
2009-08-15T21:01:07Z
2009-12-07T19:45:39Z
<p>I've noticed that there are many questions about how to handle <code>UIImage</code> objects, especially in conjunction with <code>UIImagePickerController</code> and then displaying it in a view (usually a <code>UIImageView</code>). Here is a collection of common questions and their answers. Feel free to edit and add your own.</p>
<p><em>I obviously learnt all this information from somewhere too. Various forum posts, StackOverflow answers and my own experimenting brought me to all these solutions. Credit goes to those who posted some sample code that I've since used and modified. I don't remember who you all are - but hats off to you!</em></p>
<h2>How Do I Select An Image From the User's Images or From the Camera?</h2>
<p>You use <code>UIImagePickerController</code>. The documentation for the class gives a decent overview of how one would use it, and can be found <a href="http://developer.apple.com/IPhone/library/documentation/UIKit/Reference/UIImagePickerController%5FClass/UIImagePickerController/UIImagePickerController.html" rel="nofollow">here</a>.</p>
<p>Basically, you create an instance of the class, which is a modal view controller, display it, and set yourself (or some class) to be the delegate. Then you'll get notified when a user selects some form of media (movie or image in 3.0 on the 3GS), and you can do whatever you want.</p>
<h2>My Delegate Was Called - How Do I Get The Media?</h2>
<p>The delegate method signature is the following:</p>
<pre><code>- (void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingMediaWithInfo:(NSDictionary *)info;
</code></pre>
<p>You should put a breakpoint in the debugger to see what's in the dictionary, but you use that to extract the media. For example:</p>
<pre><code>UIImage* image = [info objectForKey:UIImagePickerControllerOriginalImage];
</code></pre>
<p>There are other keys that work as well, all in the <a href="http://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UIImagePickerControllerDelegate%5FProtocol/UIImagePickerControllerDelegate/UIImagePickerControllerDelegate.html#//apple%5Fref/doc/uid/TP40007069-CH3-SW1" rel="nofollow">documentation</a>.</p>
<h2>OK, I Got The Image, But It Doesn't Have Any Geolocation Data. What gives?</h2>
<p>Unfortunately, Apple decided that we're not worthy of this information. When they load the data into the <code>UIImage</code>, they strip it of all the EXIF/Geolocation data.</p>
<h2>Can I Get To The Original File Representing This Image on the Disk?</h2>
<p>Nope. For security purposes, you only get the <code>UIImage</code>.</p>
<h2>How Can I Look At The Underlying Pixels of the <code>UIImage</code>?</h2>
<p>Since the <code>UIImage</code> is immutable, you can't look at the direct pixels. However, you can make a copy. The code to this looks something like this:</p>
<pre><code>UIImage* image = ...; // An image
NSData* pixelData = (NSData*) CGDataProviderCopyData(CGImageGetDataProvider(image.CGImage));
unsigned char* pixelBytes = (unsigned char *)[pixelData bytes];
// Take away the red pixel, assuming 32-bit RGBA
for(int i = 0; i < [pixelData length]; i += 4) {
pixelBytes[i] = 0; // red
pixelBytes[i+1] = pixelBytes[i+1]; // green
pixelBytes[i+2] = pixelBytes[i+2]; // blue
pixelBytes[i+3] = pixelBytes[i+3]; // alpha
}
</code></pre>
<p>However, note that <code>CGDataProviderCopyData</code> provides you with an "immutable" reference to the data - meaning you can't change it (and you may get a <code>BAD_ACCESS</code> error if you do). Look at the next question if you want to see how you can modify the pixels.</p>
<h2>How Do I Modify The Pixels of the <code>UIImage</code>?</h2>
<p>The <code>UIImage</code> is immutable, meaning you can't change it. Apple posted a great article on how to get a copy of the pixels and modify them, and rather than copy and paste it here, you should just go read the <a href="http://developer.apple.com/qa/qa2007/qa1509.html" rel="nofollow">article</a>.</p>
<p>Once you have the bitmap context as they mention in the article, you can do something similar to this to get a new <code>UIImage</code> with the modified pixels:</p>
<pre><code>CGImageRef ref = CGBitmapContextCreateImage(bitmap);
UIImage* newImage = [UIImage imageWithCGImage:ref];
</code></pre>
<p>Do remember to release your references though, otherwise you're going to be leaking quite a bit of memory. </p>
<h2>After I Select 3 Images From The Camera, I Run Out Of Memory. Help!</h2>
<p>You have to remember that even though on disk these images take up only a few hundred kilobytes at most, that's because they're compressed as a PNG or JPG. When they are loaded into the <code>UIImage</code>, they become uncompressed. A quick over-the-envelope calculation would be:</p>
<pre><code>width x height x 4 = bytes in memory
</code></pre>
<p>That's assuming 32-bit pixels. If you have 16-bit pixels (some JPGs are stored as RGBA-5551), then you'd replace the <code>4</code> with a <code>2</code>. </p>
<p>Now, images taken with the camera are <code>1600 x 1200</code> pixels, so let's do the math:</p>
<pre><code>1600 x 1200 x 4 = 7,680,000 bytes = ~8 MB
</code></pre>
<p>8 MB is a lot, especially when you have a limit of around 24 MB for your application. That's why you run out of memory.</p>
<h2>OK, I Understand Why I Have No Memory. What Do I Do?</h2>
<p>There is never any reason to <strong>display</strong> images at their full resolution. The iPhone has a screen of <code>480 x 320</code> pixels, so you're just wasting space. If you find yourself in this situation, ask yourself the following question: Do I need the full resolution image?</p>
<p>If the answer is yes, then you should save it to disk for later use.</p>
<p>If the answer is no, then read the next part.</p>
<p>Once you've decided what to do with the full-resolution image, then you need to create a smaller image to use for displaying. Many times you might even want several sizes for your image: a thumbnail, a full-size one for displaying, and the original full-resolution image.</p>
<h2>OK, I'm Hooked. How Do I Resize the Image?</h2>
<p>Unfortunately, there is no defined way how to resize an image. Also, it's important to note that when you resize it, you'll get a new image - you're not modifying the old one.</p>
<p>There are a couple of methods to do the resizing. I'll present them both here, and explain the pros and cons of each.</p>
<p><strong>Method 1: Using UIKit</strong></p>
<pre><code>+ (UIImage*)imageWithImage:(UIImage*)image scaledToSize:(CGSize)newSize;
{
// Create a graphics image context
UIGraphicsBeginImageContext(newSize);
// Tell the old image to draw in this new context, with the desired
// new size
[image drawInRect:CGRectMake(0,0,newSize.width,newSize.height)];
// Get the new image from the context
UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
// End the context
UIGraphicsEndImageContext();
// Return the new image.
return newImage;
}
</code></pre>
<p>This method is very simple, and works great. It will also deal with the UIImageOrientation for you, meaning that you don't have to care whether the camera was sideways when the picture was taken. <strong>However</strong>, this method is not thread safe, and since thumbnailing is a relatively expensive operation (approximately ~2.5s on a 3G for a <code>1600 x 1200</code> pixel image), this is very much an operation you may want to do in the background, on a separate thread.</p>
<p><strong>Method 2: Using CoreGraphics</strong>
+ (UIImage*)imageWithImage:(UIImage*)sourceImage scaledToSize:(CGSize)newSize;
{
CGFloat targetWidth = targetSize.width;
CGFloat targetHeight = targetSize.height;</p>
<pre><code> CGImageRef imageRef = [sourceImage CGImage];
CGBitmapInfo bitmapInfo = CGImageGetBitmapInfo(imageRef);
CGColorSpaceRef colorSpaceInfo = CGImageGetColorSpace(imageRef);
if (bitmapInfo == kCGImageAlphaNone) {
bitmapInfo = kCGImageAlphaNoneSkipLast;
}
CGContextRef bitmap;
if (sourceImage.imageOrientation == UIImageOrientationUp || sourceImage.imageOrientation == UIImageOrientationDown) {
bitmap = CGBitmapContextCreate(NULL, targetWidth, targetHeight, CGImageGetBitsPerComponent(imageRef), CGImageGetBytesPerRow(imageRef), colorSpaceInfo, bitmapInfo);
} else {
bitmap = CGBitmapContextCreate(NULL, targetHeight, targetWidth, CGImageGetBitsPerComponent(imageRef), CGImageGetBytesPerRow(imageRef), colorSpaceInfo, bitmapInfo);
}
if (sourceImage.imageOrientation == UIImageOrientationLeft) {
CGContextRotateCTM (bitmap, radians(90));
CGContextTranslateCTM (bitmap, 0, -targetHeight);
} else if (sourceImage.imageOrientation == UIImageOrientationRight) {
CGContextRotateCTM (bitmap, radians(-90));
CGContextTranslateCTM (bitmap, -targetWidth, 0);
} else if (sourceImage.imageOrientation == UIImageOrientationUp) {
// NOTHING
} else if (sourceImage.imageOrientation == UIImageOrientationDown) {
CGContextTranslateCTM (bitmap, targetWidth, targetHeight);
CGContextRotateCTM (bitmap, radians(-180.));
}
CGContextDrawImage(bitmap, CGRectMake(0, 0, targetWidth, targetHeight), imageRef);
CGImageRef ref = CGBitmapContextCreateImage(bitmap);
UIImage* newImage = [UIImage imageWithCGImage:ref];
CGContextRelease(bitmap);
CGImageRelease(ref);
return newImage;
}
The benefit of this method is that it is thread-safe, plus it takes care of all the small things (using correct color space and bitmap info, dealing with image orientation) that the UIKit version does.
</code></pre>
<h2>How Do I Resize and Maintain Aspect Ratio (like the AspectFill option)?</h2>
<p>It is very similar to the method above, and it looks like this:</p>
<pre><code>+ (UIImage*)imageWithImage:(UIImage*)sourceImage scaledToSizeWithSameAspectRatio:(CGSize)newSize;
{
CGSize imageSize = sourceImage.size;
CGFloat width = imageSize.width;
CGFloat height = imageSize.height;
CGFloat targetWidth = targetSize.width;
CGFloat targetHeight = targetSize.height;
CGFloat scaleFactor = 0.0;
CGFloat scaledWidth = targetWidth;
CGFloat scaledHeight = targetHeight;
CGPoint thumbnailPoint = CGPointMake(0.0,0.0);
if (CGSizeEqualToSize(imageSize, targetSize) == NO) {
CGFloat widthFactor = targetWidth / width;
CGFloat heightFactor = targetHeight / height;
if (widthFactor > heightFactor) {
scaleFactor = widthFactor; // scale to fit height
}
else {
scaleFactor = heightFactor; // scale to fit width
}
scaledWidth = width * scaleFactor;
scaledHeight = height * scaleFactor;
// center the image
if (widthFactor > heightFactor) {
thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5;
}
else if (widthFactor < heightFactor) {
thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5;
}
}
CGImageRef imageRef = [sourceImage CGImage];
CGBitmapInfo bitmapInfo = CGImageGetBitmapInfo(imageRef);
CGColorSpaceRef colorSpaceInfo = CGImageGetColorSpace(imageRef);
if (bitmapInfo == kCGImageAlphaNone) {
bitmapInfo = kCGImageAlphaNoneSkipLast;
}
CGContextRef bitmap;
if (sourceImage.imageOrientation == UIImageOrientationUp || sourceImage.imageOrientation == UIImageOrientationDown) {
bitmap = CGBitmapContextCreate(NULL, targetWidth, targetHeight, CGImageGetBitsPerComponent(imageRef), CGImageGetBytesPerRow(imageRef), colorSpaceInfo, bitmapInfo);
} else {
bitmap = CGBitmapContextCreate(NULL, targetHeight, targetWidth, CGImageGetBitsPerComponent(imageRef), CGImageGetBytesPerRow(imageRef), colorSpaceInfo, bitmapInfo);
}
// In the right or left cases, we need to switch scaledWidth and scaledHeight,
// and also the thumbnail point
if (sourceImage.imageOrientation == UIImageOrientationLeft) {
thumbnailPoint = CGPointMake(thumbnailPoint.y, thumbnailPoint.x);
CGFloat oldScaledWidth = scaledWidth;
scaledWidth = scaledHeight;
scaledHeight = oldScaledWidth;
CGContextRotateCTM (bitmap, radians(90));
CGContextTranslateCTM (bitmap, 0, -targetHeight);
} else if (sourceImage.imageOrientation == UIImageOrientationRight) {
thumbnailPoint = CGPointMake(thumbnailPoint.y, thumbnailPoint.x);
CGFloat oldScaledWidth = scaledWidth;
scaledWidth = scaledHeight;
scaledHeight = oldScaledWidth;
CGContextRotateCTM (bitmap, radians(-90));
CGContextTranslateCTM (bitmap, -targetWidth, 0);
} else if (sourceImage.imageOrientation == UIImageOrientationUp) {
// NOTHING
} else if (sourceImage.imageOrientation == UIImageOrientationDown) {
CGContextTranslateCTM (bitmap, targetWidth, targetHeight);
CGContextRotateCTM (bitmap, radians(-180.));
}
CGContextDrawImage(bitmap, CGRectMake(thumbnailPoint.x, thumbnailPoint.y, scaledWidth, scaledHeight), imageRef);
CGImageRef ref = CGBitmapContextCreateImage(bitmap);
UIImage* newImage = [UIImage imageWithCGImage:ref];
CGContextRelease(bitmap);
CGImageRelease(ref);
return newImage;
}
</code></pre>
<p>The method we employ here is to create a bitmap with the desired size, but draw an image that is actually larger, thus maintaining the aspect ratio.</p>
<h2>So We've Got Our Scaled Images - How Do I Save Them To Disk?</h2>
<p>This is pretty simple. Remember that we want to save a compressed version to disk, and not the uncompressed pixels. Apple provides two functions that help us with this (documentation is <a href="http://developer.apple.com/IPhone/library/documentation/UIKit/Reference/UIImage%5FClass/Reference/Reference.html" rel="nofollow">here</a>):</p>
<pre><code>NSData* UIImagePNGRepresentation(UIImage *image);
NSData* UIImageJPEGRepresentation (UIImage *image, CGFloat compressionQuality);
</code></pre>
<p>And if you want to use them, you'd do something like:</p>
<pre><code>UIImage* myThumbnail = ...; // Get some image
NSData* imageData = UIImagePNGRepresentation(myThumbnail);
</code></pre>
<p>Now we're ready to save it to disk, which is the final step (say into the documents directory):</p>
<pre><code>// Give a name to the file
NSString* imageName = @"MyImage.png";
// Now, we have to find the documents directory so we can save it
// Note that you might want to save it elsewhere, like the cache directory,
// or something similar.
NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString* documentsDirectory = [paths objectAtIndex:0];
// Now we get the full path to the file
NSString* fullPathToFile = [documentsDirectory stringByAppendingPathComponent:imageName];
// and then we write it out
[imageData writeToFile:fullPathToFile atomically:NO];
</code></pre>
<p>You would repeat this for every version of the image you have.</p>
<h2>How Do I Load These Images Back Into Memory?</h2>
<p>Just look at the various <code>UIImage</code> initialization methods, such as <code>+imageWithContentsOfFile:</code> in the Apple <a href="http://developer.apple.com/IPhone/library/documentation/UIKit/Reference/UIImage%5FClass/Reference/Reference.html" rel="nofollow">documentation</a>.</p>
http://stackoverflow.com/questions/1827106/block-touch-propagation-to-other-view
1
Block touch propagation to other view
Luca
2009-12-01T15:56:24Z
2009-12-07T15:10:13Z
<p>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 underlieng brother views?</p>
http://stackoverflow.com/questions/1857817/how-can-i-send-two-arguments-in-a-selector-method
1
How can I send two arguments in a selector method?
senthilmuthu
2009-12-07T04:28:39Z
2009-12-07T05:31:14Z
<p>In the following, how can I send two arguments in <code>togButton</code> method? I tried, but it did not work.</p>
<pre><code>[button addTarget:self action:@selector(togButton:)
forControlEvents:UIControlEventTouchUpInside];
</code></pre>
http://stackoverflow.com/questions/1166428/iphone-gui-physics-code
0
Iphone GUI physics code
Gonen
2009-07-22T16:13:45Z
2009-12-07T04:00:03Z
<p>When you drag an iphone GUI element like a list, it scrolls in a physics correct way, and also has a nice bounce effect at the end.
I would like to write a GUI element in my game, without using UIKit. I wonder where is the code implementing this, and if I can use it instead of trying to write something similar.
Any ideas? </p>
http://stackoverflow.com/questions/1856097/strange-delay-with-navigation-controller-behaviour
0
Strange delay with Navigation Controller behaviour
joec
2009-12-06T18:11:25Z
2009-12-07T03:06:28Z
<p>I have the following set up in a navigation controller.</p>
<p>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 B etc). When i select 'Banks' i see my banks (list coming from from web service), but then i go up one level to my root, and select 'Hotels', when the view loads (from web service), i still see my banks, for about 1 second, before the view is updated with the list of hotels.</p>
<p>How can i stop the previous category's list showing up when i choose a different category?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1849669/converting-between-unique-nsindexpath-and-unique-nsuinteger-or-int
0
Converting between unique NSIndexPath and unique NSUInteger (or int)
Alex Reynolds
2009-12-04T21:11:50Z
2009-12-06T00:08:31Z
<p>Is there a better way than what is <a href="http://blog.jonmsterling.com/2009/08/19/converting-nsindexpath-to-a-unique-integer-in-uikit.html" rel="nofollow">proposed here</a> to create a one-to-one mapping between an table view cell's <code>NSIndexPath</code> and a unique <code>NSUInteger</code> or <code>int</code>, in order to create a unique <code>tag</code> property value for a widget in the cell (a <code>UIProgressView</code>)?</p>
<p>The link adds methods through a <code>UIKit</code> category extension that converts between <code>NSIndexPath</code> and <code>int</code>, but they only work for less than a certain number of rows. </p>
<p>Granted, I may not run into that limit, but I'm wondering if there is a mapping that someone has come up with that can be guaranteed to work for any number of rows.</p>
http://stackoverflow.com/questions/1847353/how-to-switch-to-a-different-uitabbaritem-on-uibutton-touch-up-inside
1
How to switch to a different UITabBarItem on UIButton touch up inside
joec
2009-12-04T14:40:00Z
2009-12-04T20:40:00Z
<p>I have a <code>UITabBarController</code> as my <code>MainWindow.xib</code>. I have 3 tab bar items on the tab bar. On the second tab bar item, i have placed a <code>UIButton</code>. When the user taps the button, i want to be able to switch to the first tab bar item and display the view loaded there. How would i do this programmatically?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1147698/abpersonsetimagedata-doesnt-display-image
2
ABPersonSetImageData doesn't display image
Stefan
2009-07-18T14:38:05Z
2009-12-04T20:00:18Z
<p>Hello, </p>
<p>I use ABUnknownPersonViewController to display a contact view.</p>
<p>I try to set an image with:</p>
<pre><code>NSData *dataRef = UIImagePNGRepresentation([UIImage imageNamed:@"contact3.png"]);
ABPersonSetImageData(newPersonViewController.displayedPerson, (CFDataRef)dataRef, nil);
</code></pre>
<p>It doesn't work and I don't know why. Any ideas?</p>
http://stackoverflow.com/questions/1221943/uikit-resizing-a-view-to-accommodate-subviews
1
UIKIt: Resizing a view to accommodate subviews
U62
2009-08-03T11:58:26Z
2009-12-04T17:00:04Z
<p>I've been looking at the way resiznig works in Cocoa Touch and it looks like without writing any code, a UIView cannot be set up to size itself based on the size of it's children. There are plenty of options to resize and re-position child views when their containing view changes size, but nothing that works the other way round as far as I can tell.</p>
<p>I wanted to check that this is the case before I do a load of subclassing to override sizeThatFits: </p>
http://stackoverflow.com/questions/1845234/why-the-height-of-main-window-is-480-instead-of-460-with-status-bar
0
Why the height of main window is 480 instead of 460 with status bar
an0
2009-12-04T06:31:34Z
2009-12-04T08:44:55Z
<p>Shouldn't it be 460 when the status bar whose height is 20 is shown?</p>
<p>So it turns out that the status bar is ON the main window instead of ABOVE it?</p>
<p>In contrast, view height is set to 460 in IB when status bar is turned on.</p>
http://stackoverflow.com/questions/1834244/uisegmentedcontrol-without-rounded-corner
0
UISegmentedControl without rounded corner?
dkberktas
2009-12-02T16:49:40Z
2009-12-03T17:58:38Z
<p>Is there a way of get rid of UISegmentedControl's rounded corners or it is the default behavior?</p>
http://stackoverflow.com/questions/1838615/asynchronous-image-load-into-tableview-cell
0
Asynchronous image load into TableView cell
Igor Kilimnik
2009-12-03T08:57:52Z
2009-12-03T17:17:46Z
<p>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, however original code works of course. PLease help me to make this code work to display an image in a sigle cell for grouped tableview. My TableView has only one row and it has UITableViewCellStyleDefault style.</p>
<p><a href="http://www.markj.net/iphone-asynchronous-table-image/comment-page-1/#comments" rel="nofollow">Original Code</a></p>
<p>Here is my modified method, this is the core method.</p>
<pre><code>- (void)connectionDidFinishLoading:(NSURLConnection*)theConnection
{
[connection release];
connection=nil;
UIImage *img = [UIImage imageWithData:data];
self.image = img;
self.frame = self.bounds;
[self setNeedsLayout];
[data release];
data=nil;
}
</code></pre>
<p>This is how I use it to display image in my TableView Cell cellForRowAtIndexPath method.</p>
<pre><code>CGRect frame;
frame.size.width=75; frame.size.height=75;
frame.origin.x=0; frame.origin.y=0;
AsyncImageView* asyncImage = [[[AsyncImageView alloc] initWithFrame:frame] autorelease];
[asyncImage loadImageFromURL:imageURL];
cell.imageView.image = asyncImage.image;
</code></pre>
http://stackoverflow.com/questions/1838809/custom-mapkit-view-zoom
0
Custom mapkit view zoom
Sergey Zenchenko
2009-12-03T09:41:41Z
2009-12-03T09:41:41Z
<p>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 override touchesBegan?</p>
<pre><code>@class GridOverlay;
@interface MapView : MKMapView {
GridOverlay *overlay;//This view must catch double click his touchesBegan method never call also
}
-(void)setOverlay:(GridOverlay*)_overlay;
@end
@implementation MapView
-(void)setOverlay:(GridOverlay*)_overlay {
overlay=_overlay;
[self addSubview:overlay];
}
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSLog(@"Map touch");//This code never call, that i touch map on iphone
}
@end
</code></pre>
<p>And add to view in view controller</p>
<pre><code>overlay = [[GridOverlay alloc] initWithFrame:map.bounds];
[map setZoomEnabled:YES];
[map addSubview:overlay];
map.userInteractionEnabled=YES;
</code></pre>
http://stackoverflow.com/questions/1827691/is-this-a-uikit-bug
0
Is this a UIKit bug?
Tomen
2009-12-01T17:28:33Z
2009-12-03T06:03:51Z
<p>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.</p>
<p>There is a tableview. Each cell offers a disclosure-button to a "settings"-like screen that is a modal view. The modal view can be closed via a "Close"-button.</p>
<p>The modal view contains a UITextView.</p>
<p>Now here comes the bug:
The user holds a key that offers similar characters( eg: a -> ä á à ... ). When the user holds that key, the characters get offered and the first one gets selected blue. If the user holds this button and simultaneously clicks the "Close" Button. The modal view disappears and the table view shows up. The keyboard goes away, but the {a á ä à} menu is still visible for about a second. Then the app crashes.</p>
<p>This can only be reproduced on the device, since you cannot press two buttons simultaneously.</p>
<p>Here is a stack trace</p>
<pre><code>Date/Time: 2009-12-01 17:39:31.048 +0100
OS Version: iPhone OS 3.0.1 (7A400)
Report Version: 104
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x00000008
Crashed Thread: 0
Thread 0 Crashed:
0 libobjc.A.dylib 0x300102ac objc_msgSend + 16
1 UIKit 0x308ffda0 -[UIKeyboardImpl hasMarkedText] + 20
2 UIKit 0x309161b2 -[UIKeyboardImpl updateShiftState] + 230
3 UIKit 0x309224c0 -[UIKeyboardImpl handleObserverCallback] + 72
4 UIKit 0x30922466 observerCallback + 14
5 CoreFoundation 0x3020bf38 __CFRunLoopDoObservers + 420
6 CoreFoundation 0x30252e46 CFRunLoopRunSpecific + 1734
7 CoreFoundation 0x3025276a CFRunLoopRunInMode + 42
8 GraphicsServices 0x32044b08 GSEventRunModal + 108
9 GraphicsServices 0x32044bb4 GSEventRun + 56
10 UIKit 0x308f035c -[UIApplication _run] + 384
11 UIKit 0x308ef11a UIApplicationMain + 694
12 **** 0x00002360 main (main.m:14)
13 **** 0x000022fc start + 44
Thread 1:
0 libSystem.B.dylib 0x31d47624 semaphore_wait_signal_trap + 8
1 libSystem.B.dylib 0x31d702de semaphore_wait_signal + 2
2 libSystem.B.dylib 0x31d49c9c pthread_mutex_lock + 284
3 WebCore 0x35866fa6 __ZL17_WebTryThreadLockb + 98
4 WebCore 0x35866f22 __ZL14WebRunLoopLockP19__CFRunLoopObservermPv + 14
5 CoreFoundation 0x3020bf38 __CFRunLoopDoObservers + 420
6 CoreFoundation 0x30252db0 CFRunLoopRunSpecific + 1584
7 CoreFoundation 0x3025276a CFRunLoopRunInMode + 42
8 WebCore 0x35866ed2 __ZL12RunWebThreadPv + 286
9 libSystem.B.dylib 0x31d6a6ea _pthread_body + 10
</code></pre>
http://stackoverflow.com/questions/1826019/uitextview-has-no-events
0
UITextView has no events
Craig Warren
2009-12-01T12:53:20Z
2009-12-02T20:19:11Z
<p>I am developing an iPhone application which requires a multiline text field (UITextView) to capture some text.</p>
<p>When the user touches inside the textView it becomes firstResponder and displays the keyboard. What I really need it to do is remove the keyboard when the user is finished. Normally with a text field the return/done button press would signal the end of typing and I would use the delegate to resign first responder. However with a multiline textview I want the user to be able to add a new line so that is not possible.</p>
<p>My next option would be to resign first responder if there is a touch up outside of the text view. The problem here is that there are no events declared on UITextView which I can see in interface builder.</p>
<p>How can I create a multiline text field in an iPhone app which will release first responder at a sensible time when the user is done with it?</p>
http://stackoverflow.com/questions/1061071/uitableview-deleting-sections-with-animation
1
UITableView: deleting sections with animation
Corey Floyd
2009-06-29T23:26:49Z
2009-12-02T17:07:55Z
<p><strong>Update</strong></p>
<p>I have posted my solution to this problem as an answer below. It takes a different approach from my first revision.</p>
<p><hr></p>
<p><strong>Original Question</strong>
I previously asked a question on SO that I thought solved my issues:</p>
<p><a href="http://stackoverflow.com/questions/998603/how-to-deal-with-non-visible-rows-during-row-deletion-uitableviews">http://stackoverflow.com/questions/998603/how-to-deal-with-non-visible-rows-during-row-deletion-uitableviews</a></p>
<p>However, I now have similar problems again when removing sections from a UITableView.
(they resurfaced when I varied the number of sections/rows in the table).</p>
<p>Before I lose you because of the shear length of my post, let me state the problem clearly, and you can read as much as you require to provide an answer.</p>
<p><hr></p>
<p><strong>Problem:</strong></p>
<p>If batch deleting rows AND sections from a UITableView, the application crashes, sometimes. It depends on the configuration of the table and the combination of rows and sections I choose to remove. </p>
<p>The log says I crashed because it says I have not updated the datasource and the table properly:</p>
<pre><code>Invalid update: invalid number of rows in section 5. The number of rows contained in an existing section after the update (2) must be equal to the number of rows contained in that section before the update (1), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted).
</code></pre>
<p>Now quickly, before you write the obvious answer, I assure you I have indeed added and deleted the rows and sections properly from the dataSource. The explanation is lengthy, but you will find it below, following the method.</p>
<p>So with that, if you are still interested…</p>
<p><hr></p>
<p><strong>Method that handles removal of sections and rows:</strong></p>
<pre><code>- (void)createFilteredTableGroups{
//index set to hold sections to remove for deletion animation
NSMutableIndexSet *sectionsToDelete = [NSMutableIndexSet indexSet];
[sectionsToDelete removeIndex:0];
//array to track cells for deletion animation
NSMutableArray *cellsToDelete = [NSMutableArray array];
//array to track controllers to delete from presentation model
NSMutableArray *controllersToDelete = [NSMutableArray array];
//for each section
for(NSUInteger i=0; i<[tableGroups count];i++){
NSMutableArray *section = [tableGroups objectAtIndex:i];
//controllers to remove
NSMutableIndexSet *controllersToDeleteInCurrentSection = [NSMutableIndexSet indexSet];
[controllersToDeleteInCurrentSection removeIndex:0];
NSUInteger indexOfController = 0;
//for each cell controller
for(ScheduleCellController *cellController in section){
//bool indicating whether the cell controller's cell should be removed
NSString *shouldDisplayString = (NSString*)[[cellController model] objectForKey:@"filteredDataSet"];
BOOL shouldDisplay = [shouldDisplayString boolValue];
//if it should be removed
if(!shouldDisplay){
NSIndexPath *cellPath = [self indexPathOfCellWithCellController:cellController];
//if cell is on screen, mark for animated deletion
if(cellPath!=nil)
[cellsToDelete addObject:cellPath];
//marking controller for deleting from presentation model
[controllersToDeleteInCurrentSection addIndex:indexOfController];
}
indexOfController++;
}
//if removing all items in section, add section to removed in animation
if([controllersToDeleteInCurrentSection count]==[section count])
[sectionsToDelete addIndex:i];
[controllersToDelete addObject:controllersToDeleteInCurrentSection];
}
//copy the unfiltered data so we can remove the data that we want to filter out
NSMutableArray *newHeaders = [tableHeaders mutableCopy];
NSMutableArray *newTableGroups = [[allTableGroups mutableCopy] autorelease];
//removing controllers
int i = 0;
for(NSMutableArray *section in newTableGroups){
NSIndexSet *indexesToDelete = [controllersToDelete objectAtIndex:i];
[section removeObjectsAtIndexes:indexesToDelete];
i++;
}
//removing empty sections and cooresponding headers
[newHeaders removeObjectsAtIndexes:sectionsToDelete];
[newTableGroups removeObjectsAtIndexes:sectionsToDelete];
//update headers
[tableHeaders release];
tableHeaders = newHeaders;
//storing filtered table groups
self.filteredTableGroups = newTableGroups;
//filtering animation and presentation model update
[self.tableView beginUpdates];
tableGroups = self.filteredTableGroups;
[self.tableView deleteSections:sectionsToDelete withRowAnimation:UITableViewRowAnimationTop];
[self.tableView deleteRowsAtIndexPaths:cellsToDelete withRowAnimation:UITableViewRowAnimationTop];
[self.tableView endUpdates];
//marking table as filtered
self.tableIsFiltered = YES;
}
</code></pre>
<p><hr></p>
<p><strong>My guess:</strong></p>
<p>The problem seems to be this: If you look above where I list the number of cells in each section, you will see that section 5 appears to increase by 1. However, this is not true. The original section 5 has actually been deleted and another section has taken its place (specifically, it is old section 10).</p>
<p>So why does the table view seem not to realize this? It should KNOW that I removed the old section <em>and</em> should not expect a new section that is now located at the old section's index to be bound by the deleted section's number of rows.</p>
<p>Hopefully this makes sense, it is a little complicate to write this out.</p>
<p>(note this code worked before with a different number of rows/sections. this particular configuration seems to give it issues) </p>
http://stackoverflow.com/questions/604632/how-do-you-add-multi-line-text-to-a-uibutton
2
How do you add multi-line text to a UIButton?
Owain Hunt
2009-03-03T00:22:11Z
2009-12-01T22:34:56Z
<p>I have the following code...</p>
<pre><code>UILabel *buttonLabel = [[UILabel alloc] initWithFrame:targetButton.bounds];
buttonLabel.text = @"Long text string";
[targetButton addSubview:buttonLabel];
[targetButton bringSubviewToFront:buttonLabel];
</code></pre>
<p>...the idea being that I can have multi-line text for the button, but the text is always obscured by the backgroundImage of the UIButton. A logging call to show the subviews of the button shows that the UILabel has been added, but the text itself cannot be seen. Is this a bug in UIButton or am I doing something wrong?</p>
http://stackoverflow.com/questions/1823317/how-do-i-legally-get-the-current-first-responder-on-the-screen-on-an-iphone
2
How do I [legally] get the current first responder on the screen on an iPhone?
Anthony D
2009-12-01T00:31:14Z
2009-12-01T01:17:38Z
<p>I submitted my app a little over a week ago and got the dreaded rejection email today. It reads as follows:</p>
<blockquote>
<p>Dear -----------,</p>
<p>Thank you for submitting --------- to the App Store. Unfortunately it cannot be added to the App Store because it is using a private API. Use of non-public APIs, which as outlined in the iPhone Developer Program License Agreement section 3.3.1 is prohibited:</p>
<p>"3.3.1 Applications may only use Documented APIs in the manner prescribed by Apple and must not use or call any private APIs."</p>
<p>The non-public API that is included in your application is firstResponder.</p>
<p>Regards,</p>
<p>iPhone Developer Program</p>
</blockquote>
<p>Now, the offending API call is actually a solution I found here on SO:</p>
<pre><code>UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
UIView *firstResponder = [keyWindow performSelector:@selector(firstResponder)];
</code></pre>
<p>So this is my question; How do I get the current first responder on the screen? I'm looking for a legal way that won't get my app rejected.</p>
<p>Thanks.</p>
<p>I figured this out based on the solution provided by Thomas below. Here is what the final code looks like:</p>
<pre><code>@implementation UIView (FindFirstResponder)
- (UIView *)findFirstResonder
{
if (self.isFirstResponder) {
return self;
}
for (UIView *subView in self.subviews) {
UIView *firstResponder = [subView findFirstResonder];
if (firstResponder != nil) {
return firstResponder;
}
}
return nil;
}
@end
</code></pre>
http://stackoverflow.com/questions/1816898/cocoa-touch-data-persistence
0
Cocoa Touch Data Persistence
Jacob Relkin
2009-11-29T21:52:19Z
2009-11-30T09:24:33Z
<p>Hi there,</p>
<p>I'm experimenting with Core Data, plist files, flat files and sqlite.
I can't seem to differentiate in terms of efficiency for small data sets.
In terms of the differences on the surface ( i.e the API ), i know the difference.</p>
<p>But what I'm trying to get a feel for is which persistence model is best for which situation.</p>
<p>Thank you. </p>
http://stackoverflow.com/questions/1816144/uipagecontrol-help
0
UIPageControl Help
Kevin
2009-11-29T17:36:22Z
2009-11-30T05:53:36Z
<p>Hey guys,</p>
<p>I need to use UIPagecontrol for my application, and I'm not sure how to get started. I'm a beginner, and the examples that apple gives me are pretty complicated. All I need are 3 pages with different views for each of them. Can anyone help me out here?</p>
<p>P.S> remember that I'm a beginner!
:D</p>
<p>thanks</p>
http://stackoverflow.com/questions/1816614/viewwilldisappear-determine-whether-view-controller-is-being-popped-or-is-showin
1
viewWillDisappear: Determine whether view controller is being popped or is showing a sub-view controller
Michael Waterfall
2009-11-29T20:09:13Z
2009-11-29T20:42:00Z
<p>I'm struggling to find a good solution to this problem. In a view controller's <code>-viewWillDisappear:</code> method, I need to find a way to determine whether it is because a view controller is being pushed onto the navigation controller's stack, or whether it is because the view controller is disappearing because it has been popped.</p>
<p>At the moment I'm setting flags such as <code>isShowingChildViewController</code> but it's getting fairly complicated. The only way I think I can detect it is in the <code>-dealloc</code> method.</p>
http://stackoverflow.com/questions/872836/how-can-i-recognize-a-tap-on-a-uiimageview-subclass-inside-a-uiscrollview
0
How can I recognize a tap on a UIImageView-subclass inside a UIScrollView?
Thanks
2009-05-16T17:18:18Z
2009-11-27T03:00:03Z
<p>I tried it with this code in my UIScrollView-subclass:</p>
<pre><code>- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSLog(@"he/she touched me");
}
</code></pre>
<p>I also made sure that in the initialization of my view, this gets called:</p>
<pre><code>self.userInteractionEnabled = YES;
</code></pre>
<p>But when the scroll view doesn't move and i tap on my subview a few times, nothing happens. No log message. I know that the UIScrollView actually waits a moment if the user would like to scroll, but at some point it should give up waiting and fire the event to the subview, right?</p>
<p>Is there something important that I might missed here?</p>
<p>EDIT: <strong>Read my answer below, if you have the same problem!</strong></p>
http://stackoverflow.com/questions/1802135/detecting-swipe-in-uinavigationbar
0
Detecting Swipe In UINavigationBar
unknown (yahoo)
2009-11-26T07:46:59Z
2009-11-26T14:25:52Z
<p>I am trying to get my view controller to detect swipes in the UINavigationBar that is automatically displayed by my app, but it refuses to detect swipes. Is there any way I can do it?</p>