2
votes
2answers
820 views

Custom progress slider control on MPMoviePlayer

Is there a way to customise the look or at least position of the movie progress slider on MPMovidePlayer?
0
votes
1answer
589 views

AFNetworking setImageWithURLRequest download progress

I am using this code to set image to UIImageView. NSURLRequest *URLRequest = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:imageToLoad]]; [imageView setImageWithURLRequest:URLRequest ...
0
votes
1answer
51 views

Why the upload progress become 0%?

My program needs to upload some data to the server and I use percentage to show the progress in a UIAlertView. When the program starts uploading, for example, the progress is 10%. I put the program ...
0
votes
1answer
133 views

ASIHttpRequest setProgress: called only with a value of 0.0 and 1.0

I was woking on YouTube Resumable Uploads The progress jumps from 0 to 1 with ASIHTTPRequest. Here is my code : -(void)uploadVideoFile:(NSDictionary *) params { if(_location && ...
5
votes
1answer
354 views

iTunes U style download/progress/stop/play button

iTunes U for the iPhone has these wonderful buttons that show the download progress the stop button and the play button (well, the "i" button) in one place - see attached screenshot. Is this a ...
0
votes
2answers
496 views

progress circle UIControll iPhone

Anybody know how to make progress indicator of doing something like on a screenshot?
1
vote
1answer
552 views

Displaying progress indicator while in-app purchase (or restored purchase) on iPhone is being processed

How do I show a progress indicator during processing of in-app purchase on iPhone? I know how to display progress/activity indicator itself, but I need to know when to start it. If I start it right ...
0
votes
1answer
127 views

isql wait for end of query on iphone

i'm using isql sdk to make Microsoft Sql 2008 query through iphone, everything works fine but I always need to click two button to get the answer of my query. I press the button 'submit' then i can ...
0
votes
2answers
115 views

Conceptual question related to Model–view–controller on iOS

The question deals with an application which uses many views in a UINavigation controller Style. In the background there is a process which load and cache data, the process is rather extensive, which ...
1
vote
2answers
84 views

UIViewController: Identify orientation is in progress

I'm developing an iPhone application. Is there any default state/accessor in UIViewController that tells if orientation is in progress? Currently I have done the following: A BOOL member in subclass ...
1
vote
2answers
728 views

Use UIWebView Private API?

I want to make a Browser like Safari with UIWebView, which can show the loading progress of the web page. And I saw an app "Downloads Lite - Downloader & Download Manager" selling in app store ...
1
vote
2answers
4k views

Custom UIProgressView Help!

I am trying to customize my UIProgressView. I would like it to look like the third one down on the image: Please can you tell me how I could acheive this.
1
vote
2answers
2k views

iPhone Circular Progress Indicator. CGContextRef. Draw on Demand

Ola Folks, Once again, I want to leech experience, information and knowledge from those who have more of them than I do. Granted, I do make some effort looking for questions to answer... :) Anyway, ...
3
votes
4answers
3k views

Get the percentage of the page load using javascript?

I'm writing an iphone application and need to show a progress bar that shows the loading progress of a web page. I want to insert a JS function to this page and once I call it, it will give me the ...
1
vote
3answers
3k views

iPhone UIImagePickerController problem: want to show UIActivityIndicatorView after hit “Use” button

When Apple introduced version 3.0 of the iPhone OS the UIImagePickerController changed slighty: it no longer provides an activity or progress indicator after the user confirms a recently taken photo. ...
6
votes
3answers
4k views

iPhone Development - restrict user interaction with application and show a progress indicator

I have a case where i pull information from a server. My application has both a tab bar and navigation buttons. I want the application to show a progress indicator and disable all other controls so ...