|
The iPod software on the iPhone, while playing, sometimes displays what I can best describe as a seek bar - a bar across the top showing the current time and position within the track and allowing you to drag the position to anywhere within the track....
Started by Randy Orrison on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
I agree if you tap the center of the album art that should work, or sometimes tap the black bar at the top
Tapping ... .
I believe the bar's visibility is remembered from the last time you used the iPod app .
Tapping on the album art toggles the seek bar.
|
|
I noticed that when I search for "Music" (for example) using Spotlight on the iPhone OS 3.0, the app "Midomi" shows up in the Spotlight results. "Midomi" doesn't exactly match "Music", but yet it appears in the results.
How can I specify additional keywords...
Started by Tim Norman on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Therefore the search term 'music' will cause....
Midomi's full name is Midomi Music Identifier and Search (Ultra) .
It might be because Midomi has specified 'Music' as its primary or secondary category (or in the keywords) when submitting the app to store .
|
|
My application has been rejected because the application did not function when reviewed by the iPhone App Review Team. The application is supposed to load words into a table view, but did not do so during the review. However, the application functions...
Answer Snippets (Read the full thread at stackoverflow):
You state that you are using an iPhone 3G S, which has significantly more memory than the older models....
From your iPhone and reinstall it), the biggest causes of inconsistent behavior between devices seem to be memory- and threading-related.
|
Ask your Facebook Friends
|
Safari HTML Reference: Supported Attributes says:
contenteditable
If true, the element can be edited on the fly; if false, it cannot.
Availability
Available in Safari 1.2 and later. Available in iPhone OS 1.0 and later.
However, on my iPhone, I can't ...
Started by plutext on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You sir are being ignorant on iphoneos 2, post.
Safari implements it, while Mobile Safari doesn't.
|
|
Hello,
I am using NSDictionary as an associated array (i.e, the keys i am using can be any arbitrary objects). One of the very annoying thing about NSDictionary is that it always make a copy of the key and store it. In my scenario, I will later retrieve...
Started by Outdateboy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
NSDictionary is....
To check if objects are equal you should use -isEqual: instead of == .
If you don't want your key to be copied (or even retained), you can use CFDictionary and supply a kCFTypeDictionaryKeyCallbacks or NULL or customized key callbacks .
|
|
I can't seem to get my app to compile when using JSON-framework http://code.google.com/p/json-framework/ with iPhone SDK 3.0.
My app compiles fine for the simulator, but when I go to compile for my device I get a 'codesign error' code 1. I've followed...
Started by mac_55 on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
The fix was to set the following at the project level (Get ... .
I was not able to build my app for iPhone OS 2.x using the iPhone 3.0 SDK.
This issue?
I started using the lovely json-framework for the iPhone but then suddenly found.
|
|
I am trying to perform some unit testing on the iphone but for some reason I cannot get it to build the executable
I have downloaded TestMyApp from the Standford lecture slides and that compiles and runs perfectly. I have created a test project and even...
Started by tigermain on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
iPhone....
Looks like you downloaded a desktop mac app project.
The iPhone SDK 2.2 installed? Without using the GTM for iPhone, OCunit doesn't work with iPhone SDK < 2.2.AppKit is not available for iPhone development.
|
|
Consider the following main() method which you would find most iPhone applications:
int main(int argc, char *argv[]) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; int retVal = UIApplicationMain(argc, argv, nil, nil); [pool release]; return...
Started by Clint Harris on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Now I don't know enough about iPhone development would probably send off a quit message to....
With UIApplicationMain - there's a chance that it doesn't return so put NSLog statements (step 1.1 that will be covered when you create your xibs.
|
|
I'm trying to install Zxing on my iphone from source (I know I can get it at the app store, but I want to modify some things in it).
The problem I'm having is that the app won't stay installed on the phone. It will run without a problem, but no icon will...
Started by Andres on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It might be a bug from Apple as I got an email from truphone saying that users .
With my iPhone firmware.
|
|
Using this method to hide the status bar:
[[UIApplication sharedApplication] setStatusBarHidden:YES animated:YES];
When setting "hidden" back to NO, the tap-to-scroll-to-top (in UIWebView, UITableView, whatever) doesn't work any more, and requires a restart...
Started by avocade on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You could try setting the ScrollsToTop property to true again after re-showing it:
[currentView setScrollsToTop:YES];
If that's not working, are you definitely only showing one view? If there is more than one scrolling view a scrollViewDidScrollToTop ... .
|