在导航栏中添加进度条

dvc*_*vch 4 navigation iphone progress-bar

我正在开发一个iPhone应用程序,并希望在顶部导航栏中显示文件上传进度条,如iPhone短信发送状态栏.我怎样才能做到这一点?

Fra*_*ger 6

非常简单,只需要参考你想要放入栏中的UIView,并致电addSubview:

UIView progressBar = ...;
[navigationController.navigationBar addSubview:progressBar];
progressBar.frame = CGRectMake( ... ); // Position it
Run Code Online (Sandbox Code Playgroud)