Search Results

0
votes

Using Interface Builder for UITableView’s

Unfortunately, it doesn't really work that way - the cells in the tableview are generated by the delegate at run-time. It turns out to be very straightforward code, though. Check out the tableview …
0
votes

How do I scroll a UITableView to a section that contains no rows?

I think a blank row is probably the only way to go there. Is it possible to redesign the UI such that the "empty" row can display something useful? I say try it out, and see what the perfor …
1
vote

How to get the RGB values for a pixel on an image on the iphone

To do something similar in my application, I created a small off-screen CGImageContext, and then rendered the UIImage into it. This allowed me a fast way to extract a number of pixels at once. This …
9
votes

How to share custom data between iPhone applications?

In addition to what's already been mentioned, the iPhone documentation on code signing seems to imply that applications signed with the same identity can access the same Keychain items. If you need …
1
vote

Repeating background image in native iPhone app

I think you probably want to create a Pattern. I'll update this answer when I find the relevant documentation. …
1
vote

What is the void* returned from CGBitmapContextGetData?

It's a pointer to the bitmap data. If you're having trouble interpreting it, then the bitmap probably isn't in the format you think it's in (CoreGraphics does some conversions automatically on load …
0
votes

How to force a screen orientation in specific view controllers?

I wasn't able to get this to work the way I wanted. You ought to be able to set a particular orientation for a ViewController, but the NavigationController doesn't seem to always do the right thing …
0
votes

Interface Builder can’t display 160dpi images correctly ??

I don't see anything like this when I work with images in IB. Maybe there's something special about your PNG file? You say that it's 160 dpi, which is fairly irrelevant. More important are what its …
1
vote

UITableView weirdness! with pictures.

Hard to tell without looking at all the code, but is it possible that you're not recycling your tableview cells properly? You have to assign a different reuseIdentifier for each cell that's rendere …
0
votes

iPhone Bug App bug Question and challenge..

Most likely, you're failing to retain some object somewhere along the way. When an object gets released and then the memory is re-used for something else, you'll get all sorts of bad behavior, incl …
0
votes

iPhone CoreLocation: How to get the most accurate speed

Disclaimer: I've only played with CoreLocation a bit, I've not tested the accuracy very closely. I'd expect that you'd get the most accurate results by using the defaults for distanceFilte …
1
vote

add “Now Loading” before UITabBarController tab select?

NSObject's performSelector:withObject:afterDelay: method can be useful here. Display your "Please wait" alert or view, or whatever, then use performSelector:withObject:afterDelay: to start the actu …
0
votes

[iPhone] tabBar viewControllers in IB: send custom init?

I don't think there's any way to change what methods are called by the IB runtime when your nib is loaded. If you described what you were trying to accomplish (i.e. why doing the setup in viewDidAp …
0
votes

Does adding many many subviews to a viewcontrollers default view make my app slow?

Don't forget to make as many of your views opaque as you can. Transparent views are a major source of performance issues. …
0
votes

Why won’t my UITableView rotate?

I just tried this, and it works as expected. You will need to provide more detail, I think. In my experience, when a view "fails" to rotate, that's because some view controller somewhere is telling …

1 2 3 next
15 30 50 per page