iOS   发布时间:2022-05-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了iphone – 如何推视图,回去看看?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

我想制作一个应用程序来播放iPhone上的本地音频文件,但是我遇到了一些我的代码. 我想知道如何推送视图,回到uitableviewcontroller并使用按钮(如媒体播放器中的“NOW PLAYING”按钮)返回到视图,而不需要插入任何新的字符串. 谢谢 我的代码应该怎么改? 在uitableviewcontroller .. - (void)tableView:(UITableView *)
我想制作一个应用程序来播放iPhone上的本地音频文件,但是我遇到了一些我的代码.
我想知道如何推送视图,回到uitableviewcontroller并使用按钮(如媒体播放器中的“Now PLAYING”按钮)返回到视图,而不需要插入任何新的字符串.

谢谢

我的代码应该怎么改?

在uitableviewcontroller ..

- (void)tableView:(UITableView *)tableView didSELEctRowATindexPath:(NSIndexPath
    *)indexPath  {  
SELEctedSong = [directoryContent objectATindex:indexPath.row];  
NSString *storyLin = [[directoryContent objectATindex:[indexPath row]] StringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];  
patch = [NSString StringWithFormat:@"/%@",storyLin];


        myDetViewCont = [[mPlayerViewController alloc] initWithNibName:@"mPlayerViewController" bundle:nil];    
myDetViewCont.myProgLang = SELEctedSong; // assigning the correct value to the variable inside DetailViewController
        [self.navigationController pushViewController:myDetViewCont animated:YES];
        [myDetViewCont release]; // releasing controller from the memory

    }

在mPlayerViewController.m

-(IBACtion) BACktoplayer{
    myDetViewCont = [[mPlayerViewController alloc] initWithNibName:@"mPlayerViewController" bundle:nil];
}

解决方法

如果您将视图推送到导航控制器,只需将其弹出以查看下方的视图.

也就是说,您推送myDetViewCont的视图应该只是在背板播放器调用中弹出.

- (IBACtion)BACkToPlayer:(id)sender {
    [self.navigationController popViewControllerAnimated:YES];
}

大佬总结

以上是大佬教程为你收集整理的iphone – 如何推视图,回去看看?全部内容,希望文章能够帮你解决iphone – 如何推视图,回去看看?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。