最近在重構(gòu)一個(gè) OC 項(xiàng)目中的圖片選擇組件,在 OC 中調(diào)用謂詞這句代碼的時(shí)候
option.predicate = [NSPredicate predicateWithFormat:@"mediaType == %ld", PHAssetMediaTypeImage];
這個(gè)代碼在 Swift 中該如何翻譯呢北发?嘗試了幾次纹因,要改成這樣
option.predicate = NSPredicate(format: "mediaType == %d", Int8(PHAssetMediaType.image.rawValue))