- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
请帮助我修复我的代码,因为我有以下错误:
Cannot invoke 'pathForResource' with an argument list of type '(String!)'
错误出现在这行代码上:
let urlpathString:String? = NSBundle.mainBundle().pathForResource(url)
我的完整代码:
import UIKit
import AVKit
import AVFoundation
import MediaPlayer
class ViewController: UIViewController {
let avPlayerViewControler = AVPlayerViewController()
var avPlayer:AVPlayer?
var videoNumber:Int!
var url:String!
override func viewDidLoad() {
super.viewDidLoad()
}
func playVideo() {
switch videoNumber {
case 1 : url="20"
case 2 : url="10"
default : break
let urlpathString:String? = NSBundle.mainBundle().pathForResource(url)
if let urlPath = urlpathString {
let movieUrl = NSURL(fileURLWithPath: urlPath)
self.avPlayer = AVPlayer(URL: movieUrl)
self.avPlayerViewControler.player = self.avPlayer
}
}
}
@IBAction func Button(sender: UIButton){
videoNumber=1
playVideo()
}
@IBAction func Button2(sender: UIButton) {
videoNumber=2
playVideo()
}
}
最佳答案
NSBundle
没有简单的 pathForResource
方法,至少有第二个参数,例如pathForResource:ofType:
由于您无论如何都需要 NSURL
,因此请使用 URL 发布的 API,将整个 if let
表达式替换为
func playVideo() {
switch videoNumber {
case 1 : url="20"
case 2 : url="10"
default : break
}
if let movieUrl = NSBundle.mainBundle().URLForResource(url, withExtension: "mp4") {
self.avPlayer = AVPlayer(URL: movieUrl)
self.avPlayerViewControler.player = self.avPlayer
}
}
您必须将 mp4
更改为预期的扩展名。
关于ios - Xcode swift - 无法使用类型为 'pathForResource' 的参数列表调用 '(String!)',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37712603/
我有问题 NSString *filePaht = [[NSBundle mainBundle] pathForResource:(NSString *)name ofType:(NSString *
我知道这听起来很奇怪,但是是否可以对 FileName 参数使用通配符? NSBundle.mainBundle().pathForResource(theFileName, ofType: "csv
我有 2 种方法,一种用于将数组保存到文件,另一种用于从文件加载数组,但是当我尝试读取数组时,没有任何反应,就像数组是空的一样。我的代码: - (IBAction)write:(id)sender {
我已将我的 json 文件 (targetJson) 放在 json_container 文件夹中。但是 NSBundle 无法使用“inDirectory”读取。 文件位置: projectName
我在玩 imageView 并且有方法 [imageWithContentsOfFile];但实际上它运行后没有显示任何内容。在代码下方,有 [imageNamed:] 方法,它照常工作。有任何想法吗
我将一个 mp4 格式的文件复制到我的 XCode 中。命名为abc.mp4 NSString *filePath = [[NSBundle mainBundle] pathForResource:@
我看到很多关于 [NSBundle MainBundle] pathForResource 的问题(是否使用 inDirectory),但我的情况似乎有所不同。 我的问题是:是的,如果没有本地化,它对
我有两个文件,都命名为 GoogleService-Info.plist。一个在文件夹 Resources -> Staging 中,另一个在文件夹 Resources -> Production 中
我在复制包资源下列出了 images.xcassets,在尝试在 images.xcassets 中添加路径之前,我确实尝试只声明文件名本身:MSB_big_icon。 谁能告诉我我做错了什么? NS
我有一个在 Xcode6 中运行良好的 Swift 文件。当我升级到 Xcode7 时,我现在收到阻止程序编译的错误。下面是不起作用的代码片段。我收到的错误只是指出“无法找到接受提供的参数的‘Path
我有一个 iPhone 应用程序需要本地化。字符串没有问题,但是,我在资源方面遇到了问题:我需要加载本地化的 HTML 页面。这些文件类似于:presentation.htm这些文件被添加到项目中,并
我的应用程序中有一堆目录和文件,例如 images/misc/mainmenu_background. .我在“iPad Simulator 3.2”中运行以下代码: NSString *images
我尝试直接打开文件,例如 fopen("/test.txt","w+");它可以在模拟器上运行,但不能在 iPhone 上运行。 然后我尝试了这个: NSString *path = [[NSBund
我想从 WebView 中的资源加载 html 文件。 在我拥有的资源中: 测试.html 测试文件夹->test.html 此代码完美运行: [[webview1 mainFrame] loadRe
所以我只是想通过一些在线视频类(class)来进入 iOS 编程。问题是,这些不是 Swift 3 的最新版本。 在我目前的项目中,需要使用以下命令通过 NSBundle-Framework 导入声音
我想不出关于 pathForResource 是如何工作的任何韵律或原因……或者更恰本地说,不是。 我的应用程序中有一堆 nib,它们都在/Build Phases/Copy Bundle Resou
在我的代码中我想打开一个html文件,所以添加了下面这行代码: NSString* path = [[NSBundle mainBundle] pathForResource:@"cheese"ofT
我的项目中有图像(仅 iPhone 支持,iPad 不支持)。图片在一个组下,而不是在 images.xcassets 下。 我想对所有 iPhone 使用相同的图像,除了 6 Plus 的 @3x,
目前我尝试设置一个简单播放视频的小应用程序(只为我的女儿),但它总是在“路径”上崩溃 import UIKit import MediaPlayer var moviePlayer : MPMovie
在 iOS 6 上,这段代码工作正常: - (NSString*)cLocalImageName { [self willAccessValueForKey:@"cLocalImageNam
我是一名优秀的程序员,十分优秀!