Hi,
is there any easy way in the iPhone SDK to include search bars like those in the iPod app or in the Contacts app? (They behave and look unlike the usual UISearchBars ...)
-- Ry
When I first got my iPhone 4, if I selected a song from the "search iPhone" screen (when you hit home twice), iTunes would start playing a playlist of all my songs, starting with the selected one.
I recently updated it to 4.2.1 (I don't remember exactly what I was at before). Now, when I select a song from the "Search iPhone" screen, iTunes starts…
Is dynamic texture compression possible in iPhone? (3G or 3GS?)
I create a UIImage dynamically each time the app runs. Can I dynamically generate a PVRTC file from it?
In compiling iPhone apps, there is a setting for "Optimized" architecture (armv7 only) vs a standard armv6/armv7 architecture.
What are the benefits/consequences of compiling an armv7 only architecture?
Hi there,
I was wondering if it's possible to create a HTML div container with some CSS magic that shows a horizontal scrollbar like the one with the screenshots on the iTunes preview on the web. I want this to work in Safari on the iPhone.
e.g. http://itunes.apple.com/app/super-monkey-ball/id281966695?mt=8
I would like to use that to display…
In my iPhone Project when i select build and analyze (shift + mac + A ) it will give me all potential memory leak in my project... but in my current project it is not working... when i intentionally put a memory leak and select build and analyze... it doesn't give me any potential memory leak as analyzer result
please help...
I have a simple navigation based iPhone app, in which user can navigate form one view to another view.
There is only one view which have 4 tab. Each tab loads a a seperate nib with a corresponding controller. Each nib contains a tableview with some other controls for searching/filtering etc.
Apprt from this I dont need tabBar in any view. So…
Hi, I am using the same technique as i populate my UITableView in iphone while writing my iPad application.
Tab Bar Controller UINavigationControllerUITableViewController of type myCustomTable(load From NIB)
MyCustomTableViewController NIB and class file implements the delegate methods
@interface MyCustomTableViewController :…
Is it possible to use chapters in videos for the iPhone in an application?
For example:
I have a 3 minutes video to play. I have chapter 1 starting at 0s, chapter 2 at 50s, chapter 3 at 95s.
Can I start plating the video at 50s (chapter 2) until the end? Can I make it play just the chapter 2 from 50s to 95s?
My question is…
I'm looking for a good source for sound effects for my iPhone game. I like SoundSnap, but they charge you for every sound you download, not just the ones you end up using. Sound design in games can be a very iterative process and I don't want to pay for 10 sounds I never use before finding the right one.
freesound.org is…
I can't unclick or access my backup iPhone encrypted file. For the life of me I can not remember ever entering a password for the encrypted iPhone backups. I've tried every password I've used or use and nothing is working. I'm not getting anywhere with long searches online. Can anyone here help?
iPhone 3.1.2
iTunes 9.1.1…
Is there a maximum size of executables or executables + shared objects on the iPhone? I've been developing an app that has been crashing on startup or early in execution with SIGSYS. Removing code from the program has helped, though structuring data so the code is simply not executed does not.
This could be memory…
I would like to customize the background (and maybe the border too) of all of the UITableViewCells within my UITableView. So far I have not been able to customize this stuff, so I have a bunch of white background cells which is the default.
Is there a way to do this with the iPhone SDK?
I have a Core Data app that will end up being an iPhone/iPad universal application.
I would like to implement cloud syncing so that an iPhone and an iPad both running the app could share data. I'm planning to use the recently released Dropbox API. Does anyone have any thoughts on the best way to go about doing…
I want to detect an extended mousedown.
The following code works in Firefox and Safari...
var mousedownTimeout;
$('#testButton').mousedown(function(){
mousedownTimeout = window.setTimeout(function(){
alert("Hey, let go.");
}, 2000);
});
$('#testButton').mouseup(function(){
…
Hi,
I have a large number of image files in my iphone app bundle (~3000) and I want to determine the dimensions at runtime rather than store this data in the database or an xml manifest for the images.
Is there a way to do this programatically?
Has anyone else here experienced problems with their Store Observer class not being called always when the user for instance cancels a request (or purchases something)
We just had our update that brought in app purchases go live last night, and before that we had obviously tested everything tons…
Hi
In my iphone app, I want to provide some sort of app termination handler that will do some final work (delete some sensitive data) before the application terminates.
I want to handle as much of the termination situations as possible:
1) User terminates the app
2) The device runs out of…
Is there a way to have my iPhone program step frame by frame through a movie recorded by the iPhone? What I want to do is have the user record a quicktime movie, then be able to step through the movie frame by frame.
Alternately, I suppose if there was a way to extract every single frame from…
I know i can simulate a memory warning on the simulator by selecting 'Simulate Memory Warning' from the drop down menu of the iPhone Simulator. I can even make a hot key for that.
But this is not what I'd like to achieve. I'd like to do that from the code by simply, lets say doing it every 5…
I am very new to iPhone programming and I was wondering how could I create a separate section for my application in the Settings.app? Like what the Facebook or BeejiveIM or JellyCar apps do. Would I have to declare this dynamically, or could I use Interface Builder?