I am developing an application for the iPhone and I want to show the progress bar of the file download in the top navigation bar, for example, in the status bar of sending iPhone SMS messages. How can i do this?
Pretty easy, just get the link to the UIView that you want to place in the panel and call addSubview :
addSubview
UIView progressBar = ...; [navigationController.navigationBar addSubview:progressBar]; progressBar.frame = CGRectMake( ... ); // Position it
It would be better to create a progress bar and post it here.
self.navigationItem.titleView = progressBar;