美文网首页
Bundle pathForResource方法返回nil问题

Bundle pathForResource方法返回nil问题

作者: 曾柏超 | 来源:发表于2017-11-01 09:54 被阅读0次
    
    oc:
        NSString* soundPath = [[NSBundle mainBundle] pathForResource:@"in" ofType:@"caf"]; 
        NSLog(@"soundPath:%@", soundPath); 
    
    swift 3.0:
        let audioFile = Bundle.main.path(forResource: "in.m4a", ofType: nil)
        print(audioFile)
    
    
    
    
    WechatIMG18 1.jpeg

    相关文章

      网友评论

          本文标题:Bundle pathForResource方法返回nil问题

          本文链接:https://www.haomeiwen.com/subject/ixewpxtx.html