2013-05-07 68 views

回答

0

使用此方法爲:

-(void)saveImages:(id)sender 
{ 

} 
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated { 
    UINavigationItem *ipcNavBarTopItem; 


    // add done button to right side of nav bar 
    UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithTitle:@"Custom Title" 
                    style:UIBarButtonItemStylePlain 
                    target:self 
                    action:@selector(saveImages:)]; 

    UINavigationBar *bar = navigationController.navigationBar; 
    [bar setHidden:NO]; 
    ipcNavBarTopItem = bar.topItem; 
    ipcNavBarTopItem.title = @"any Title"; 
    ipcNavBarTopItem.rightBarButtonItem = doneButton; 
} 
+0

感謝這麼快的答案,但implamenting你的代碼後,我仍然有同樣的結果。按下「選擇」按鈕後,模擬器會掛起註釋「壓縮視頻...」。我該如何解決它? – 2013-05-07 12:28:40