Search code examples
iphoneobjective-ciosuialertviewuiprogressview

I want to display UIProgressView on UIAlertView


I want to display UIProgressView on UIAlertView for displaying the processing of uploading of the file. But I have searched too much and also find on that link but sill unable to do that. I don't get idea from this

If anyone know the easiest way to do that then please let me know.


Solution

  • Try this code...

    UIAlertView *av = [[UIAlertView alloc] initWithTitle:@"" message:@"" delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
    UIProgressView *pv = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleBar];
    pv.frame = CGRectMake(20, 20, 200, 15);
    pv.progress = 0.5;
    [av addSubview:pv];
    [av show];