Tagged Questions
The uiprogressview tag has no wiki summary.
6
votes
3answers
3k views
UISlider with ProgressView combined
Is there an apple-house-made way to get a UISlider with a ProgressView. This is used by many streaming applications e.g. native quicktimeplayer or youtube.
(Just to be sure: i'm only in the ...
5
votes
1answer
861 views
Accurate progress displayed with UIProgressView for ASIHTTPRequest in an ASINetworkQueue
Summary: I want to track the progress of file downloads with progress bars inside cells of a tableview.
I'm using ASIHTTPRequest in an ASINetworkQueue to handle the downloads.
It works, but the ...
4
votes
2answers
261 views
Are there customizable progress bars for iOS?
UIProgressView doesn't allow any customization. I know it's not exactly something complicated, but still I'd prefer to use an open sourced solution rather than re-inventing my own wheel.
Are there ...
3
votes
1answer
640 views
UIProgressView and Custom Track and Progress Images (iOS 5 properties)
I am experimenting with some new properties in iOS 5 regarding UIProgressView. They are:
@property(nonatomic, retain) UIImage *progressImage;
@property(nonatomic, retain) UIImage *trackImage;
These ...
3
votes
1answer
1k views
how to make UIProgressView on the UITableViewCell change immediately?
I put a UIProgressView on a UITableViewCell, like that:
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"downloadcell"];
if(cell==nil)
{
cell = [[[UITableViewCell alloc] ...
2
votes
1answer
273 views
iOS setting Progress bar value while images are being processed
I have an app processing a couple of images using Quartz, and i wanted to have a UIProgressView that changes after each actions. (e.g. 0.0 0.2 0.4 0.6 0.8 1.0)
The problem is, it seems while my image ...
2
votes
2answers
285 views
Update UIProgressView from background
I have a tab bar application with three tabs. In my second tab view i have a UIProgressView. I have a NSTimer in my viewDidLoad method which calls a method which updates the progressView
...
2
votes
3answers
935 views
How to track the progress of a download using ASIHTTPRequest (ASYNC)
I am currently using an asynchronous call to my API (I setup) on my site. I am using ASIHTTPRequest's setDownloadProgressDelegate with a UIProgressView. However I don't know how I can call a selector ...
2
votes
2answers
3k views
How to Using ASIHTTPRequest to tracking Upload/Download progress
I got some question is using ASIHTTPRequest to tracking Upload/Download progress
This is the sample from ASIHTTPRequest website
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
...
2
votes
1answer
2k views
Using ASIHTTPRequest with a UIProgressView in a UIAlertView
I've managed to addSubview: a UIProgressView in/onto a UIAlertView, as well as set everything for ASIHTTPRequest, but where-ever I put the [request startSynchronous];, it crashes the app.
[request ...
2
votes
1answer
3k views
Update iPhone UIProgressView during NSURLConnection download
I am using this code:
NSURLConnection *oConnection=[[NSURLConnection alloc] initWithRequest:oRequest delegate:self];
to download a file, and I want to update a progress bar on a subview that I ...
2
votes
2answers
850 views
How to determine the size (in bytes) of a file downloading using NSURLConnection?
I need to know the size of the file I am downloading (in bytes) into my app using NSURLConnection (GET). Here is my bytes recieved code below if it helps. What I need to know is how to get the ...
1
vote
1answer
123 views
setProgress is no longer updating UIProgressView since iOS 5
I have a little trouble with a progress bar since iOS 5 came out. The code below was working fine before iOS 5 but with iOS 5 the progress bar is no longer displaying the new progress that is set ...
1
vote
2answers
98 views
Timeline Progress bar for AVPlayer
AVPlayer is fully customizable, unfortunately there are convenient methods in AVPlayer for showing the time line progress bar.
AVPlayer *player = [AVPlayer playerWithURL:URL];
AVPlayerLayer ...
1
vote
0answers
33 views
UIProgressView with bubbles?
In the UINavigationBar, I want to put a hybrid of UIProgressView & UIPageControl to show the user what step (page) of the sign up flow they're on and how many steps are left.
It look like the ...
1
vote
1answer
121 views
Add UIProgressView to a NSURLConnection?
Is it possible to add a UIProgressView to a NSURLConnection? Is it as simple as getting the length of the data and then setting it to an int then sending that int to my other class to my ...
1
vote
1answer
163 views
UIProgressView custom maximum value
I'm making an app where I retrive some value from a server, the server load. This value can be from 0.00 to 100.00, but UIProgressView only allows from 0.00 to 1.00. Is there any way I can extend the ...
1
vote
1answer
57 views
UIAlert after progressView has reached a value
I am kind of lost here. I want to know how to implement an UIAlertView after my progressView has crossed a value of 0.8.
To be more clearer I have a NSTimer running in a background thread which ...
1
vote
1answer
106 views
Is there a way to add Loading View before reload tableview data
I am trying to add Loading data option in viewDidLoad() function before [self.tableview reloaddata]. I am not sure how to add it and is there a way to make the user know that there is data getting ...
1
vote
1answer
110 views
How to remove the associated UIProgressview with the right request?
I use asihttprequest to download multiple files and I'm wondering how I can remove the associated UIProgressview with the right request when the download is done.
NSMutableArray *contentArray ...
1
vote
1answer
288 views
UISlider variable maximum value
My iPhone app plays streamed audio from the Internet and I have an UISlider to scrub back and forth the already downloaded file.
This UISlider has transparent tracks, and is on top of an ...
1
vote
3answers
353 views
Display a progress bar inside a UITextField object
How can one draw a progressbar inside a UITextField ? I have tested two ways so far.
1. Add a UIProgressView object as a subview of the UITextField object.
UIProgressView* progressView = ...
1
vote
1answer
2k views
UIProgressView+Activity Indicator View on a UITableView during data upload
I have a uitableview.
I saw this "effect" and I would replay it:
When the user taps on a button to upload some data on a server, I would a gray (transparent) view with a progress bar (maybe with ...
1
vote
1answer
721 views
UIProgressView won't update even though main thread seems to be running fine
I have my main thread where I call a method which loads data (takes a while). I call this method with performSelectorInBackground and pass the delegate. The data loading method calls back regularly to ...
1
vote
3answers
375 views
How to get remote file size to increment progress bar?
i need to download large pdf from web and i created a progress bar controller.
But, how i set max progress value it i don't know the pdf size before downloading?
Is there a way to get file size ...
1
vote
2answers
187 views
How to change ProgressView borderColor
My objective is to make ProgressView border colored like with green, red etc as mentioned in above screenshot.
I am using Custom classes provided by this url. But there is no such border coloring ...
1
vote
1answer
525 views
NSTimer Triggering UIProgressView Failure
I'm using a NSTimer in a NSObject class (Timer), that fires a method, that increments a variable and fires a method in a View Controller (InfoViewController). (Confused ;-D )
Everything shows up on ...
1
vote
1answer
1k views
UIProgressView progress doesn't updated
I have a UIProgressView added to self.view as subview. I have a UITableView with rows loaded.
I need image in every row but I don't want the app to wait for all of them, so I decide to run NSThread ...
1
vote
2answers
232 views
Customize ProgressView
I'm trying to make a control that seems a customization of the progress view.
This is what I should want to make.
It is a progress bar that would work as a countdown timer. Start at 30 seconds, and ...
1
vote
2answers
942 views
How to increase height of UIProgressView
I am creating UIProgressView from nib, i want to increase its height but it is fixed to 9. For iPad i need to increase its height How it can be done.
Thanks in advance.
1
vote
1answer
559 views
How to add label above UIProgressView in UIToolbar?
I have a UIToolbar in which I have placed a UIProgressView successfully. However, I have seen some apps contain a small label above the UIProgressView which tells the user what the program is doing ...
1
vote
2answers
486 views
iPhone: how do I set up a clear window-size “blocker view”?
I feel like this should be obvious to me, but for some reason I can't figure this out. I have a navigation interface with nav bar, tool bar, and primary view. Sometimes the user takes an action that ...
1
vote
1answer
1k views
UIProgressView not updated
I have a UIProgressView that I am trying to change the progress but is is never updated.
My "slow" operation is done from a NSoperation/NSOperation queue so it should be multithreaded.
Did you ...
1
vote
3answers
738 views
UIProgressView doesn't change when 0.0 < progress < 0.03
I have a UIProgressView that I'm using to visually represent a one-minute timer. Its width is 280 pixels. I'm using NSTimer to gradually decrease the value of 'progress', starting at progress=1.0. ...
1
vote
4answers
5k views
How to use UIProgressView while loading of a UIWebView?
i am developing an application where i am loading a urlrequest in the UIWebView and it happened successfully.
But now i am trying to display a UIProgressView when the loading is in progress( starting ...
1
vote
2answers
1k views
Resolving the wait situation for a detached thread in IPhone?
I am using a private MBProgressHUD
Now I am using the indicator view on my add button in which I am calling my addrecord service .
UIWindow *window = [UIApplication sharedApplication].keyWindow;
...
1
vote
2answers
588 views
What's the best way to show the user something is loading on the iPhone?
Recently I've been looking to create some way of showing a user that something is being loaded. I'm sure anyone with an iPhone has seen this is apps before but what is the best way of doing it?
I ...
1
vote
4answers
8k views
iPhone - Splash Screen with progress bar
I tried to create a SplashView which display the Default.png in the background and a UIProgressBar in front. But the splash screen is not being updated...
Inside my view controller I load first the ...
1
vote
4answers
3k views
UIProgressView: How to get the old style?
I'm searching for the old style of the UIProgressView:
The only UIProgressViewStyle, I'm able to present is this:
Is the old one still available? Setting the property UIProgressViewStyle always ...
0
votes
1answer
21 views
uiprogressview ProgressTintColor in iOS 4.3
I am trying to color a progress bar but mantaining compability with iOS 4.3. ProgresTintColor was introduced in iOS5. Any ideas?
0
votes
2answers
75 views
ASIHTTPRequest is not updating the DownloadProgress Delegate
I am using ASIHTTPRequest to download a file locally to the iDevice.
My download code is as follows
ASIHTTPRequest *download = [ASIHTTPRequest requestWithURL: videoUrl];
[download ...
0
votes
0answers
41 views
How do I update my progress UIProgressView in another UIView?
I hope someone can help.
I have a file data.h as an NSObject.
In this file I have implemented ASIHTTPRequest.
But my UIProgressView is in another UIViewController.
How do I update that progress ...
0
votes
3answers
68 views
Any way to prevent UIActionSheet from being dismissed when user clicks a button in it?
I added a UIProgressView to my UIActionSheet to indicate the download progress. So I do not want my UIActionSheet to be dismissed when user click the download button in it.
But is there a way to do ...
0
votes
0answers
32 views
UIProgressView and Core Data
When I delete all the data from my Core Data, it takes some seconds. Is it possible to show the progress with a UIProgressView?
0
votes
5answers
217 views
UIProgressView do not update in loop
I am loading a file and would like to show the progress in a UIProgressView. I can set the initial with:
[loadingProgressView setProgress: 0.00];
..in viewDidLoad this works perfectly.
The only ...
0
votes
1answer
68 views
Update UIProgressView while posting video to php
im trying to figure out how to update my UIProgressView while i upload a video to my server. The video is a user picked video, here is my code to upload to my server:
NSMutableArray *array = ...
0
votes
1answer
123 views
NSURLConnection & UIProgressView
In my "didFinishLaunchingWithOptions" method, I have created a UIProgressView in my GUI & after that I call a method to call a WebService with a NSURLConnection to get an XML with a SOAP message.
...
0
votes
0answers
32 views
Resize a popover after Certain time with a movie
Just a little hobby of a project, so a detailed answer isn't necessary. I had a look at auto desk inventor and they use a brilliant little UI tweak that resizes a little popover after hovering over ...
0
votes
1answer
93 views
How control volume of device by a progress or slide bar by our application?
I have an application in which i have set a notification. When notification raise then sound of that is according to device's volume level. So i want to add a progress bar or slider to control ...
0
votes
1answer
14 views
Advice how to present calculation of #records
I have an app that have a lot of records that i am loading into a core data DB. The actual loading is done in a module called "loadDBRecords". This module is called from "MainViewController", which is ...