0
votes
1answer
183 views
Enabling Swipe-to-delete while showing reorder controls on UITableView
I am looking to allow reordering of UITableViewCells and deleting via swipe to delete, but not via the red delete circle.
- (void)loadView
{
[super loadView];
[table …
1
vote
What’s the UITableView index magnifying glass character?
You could use a space as the character for the index and then overlay an UIImageView that has user interaction disabled and contains the following image: …
3
votes
Can an application find out information about currently playing song on iPhone/iPod Touch?
If you aren't planning to put your app on the App Store you can import MobileMusicPlayer.h as seen in this example application: …
3
votes
How can I deploy an iPhone Application from Xcode to real iPhone device
It sounds like the application isn't signed. Download ldid from Cydia and then use it like so: ldid -S /Applications/AccelerometerGraph.app/AccelerometerGraph
Also be sure that …
1
vote
Setting iPhone wallpaper (locked screen background) programmatically?
If you're writing a jailbreak application you can write to /var/mobile/Library/LockBackground.jpg and then kill the Springboard.
…
2
votes
Autorelease iPhone
More important than the autorelease or manual-release choice is how often you alloc and dealloc your NSAutoreleasePools. Since most of the Cocoa frameworks u …
1
vote
Iphone cocoa. When and what to release. See sample
The reason you don't have to release tempArray is because it's been allocated and then autoreleased right away. Autorelease is a method of scheduling a release call sometime in the future, so that …
7
votes
How can I replicate the trashing animation of Mail.app
Use the suckEffect type on an animation. Also: spewEffect, genieEffect, unGenieEffect, twist, tubey, swirl, cameraIris, cameraIrisHollowClose, cameraIrisHollowOpen, rippleEffect, charminUltra, zoom …
5
votes
What is the iPhone SDK Missing?
API's I'm personally looking for:
Apple80211 as a public API (private, current API is fine if documented)
Access to Volume buttons (semi-accessible via Celestial, private, ne …
0
votes
iPhone Development - My application crashes when I change the orientation
Set a breakpoint on -[UIDevice setOrientation:] and step through your code in the debugger.
To make debugging easier, you can type call (void)instrumentObjcMessageSends(Y …
0
votes
iPhone Attributed String
You may find it more convenient to use the Unicode characters set up for subscripts:
SUBSCRIPT TWO is U+2082: Hâ‚‚0
…
3
votes
Designing for High Volumes of Data in an iPhone App
You should be using SQL to search rather than loading everything into memory and searching from there. What point is a database if you are using it like a flat file?
Also, a lot of applicat …
2
votes
disable UINavigationBar gradient
Create a class that descends from UINavigationBar and implements its own drawRect: method. You may have to draw the title and buttons yourself (in which case, why not just use a custom …
6
votes
Setting custom UITableViewCells height
Your UITableViewDelegate should implement tableView:heightForRowAtIndexPath:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndex …
1
vote
iPhone pathForResource:ofType:inDirectory: bug ?
Most likely Xcode's build process isn't including the "Basic Usage HTML" subfolder in your build.
Also, you may want to split each statement out and NSLog them to see where it' …
