views:

504

answers:

1

How to add progress bar in Navigation bar like SMS sending progress .

i am developing iphone app and want to show file upload progress bar in top navigation bar like iphone sms message sending status bar . Pls advice me how to do . Thank !!!

+3  A: 

Pretty easy, just get a reference to the UIView that you want to put in the bar, and call addSubview:

UIView progressBar = ...;
[navigationController.navigationBar addSubview:progressBar];
progressBar.frame = CGRectMake( ... ); // Position it
Frank Krueger