How to convert NSUrl to NSString?

前端 未结 5 1443
鱼传尺愫
鱼传尺愫 2021-02-06 22:20

After AVAssetExportSession has complete export video. I have plan to garb Video Path to upload via Youtube. but [GDataUtilities MIMETypeForFileAtPath:path def

5条回答
  •  灰色年华
    2021-02-06 23:00

    Use this. I think it will help you.

    In Objective c

    NSString *testString = testUrl.absoluteString;
    

    In Swift

    var testString : String = testUrl.absoluteString
    

提交回复
热议问题