0

このコードは、Zarra/Long の Core Animation という本から入手しました。次のエラーのためにコンパイルされません: 「'runModalForTypes' は非推奨です」

- (IBAction)setMovieLocation:(id)sender {
NSOpenPanel *openPanel;

openPanel = [NSOpenPanel openPanel];
[openPanel setCanChooseDirectories: NO];
[openPanel setAllowsMultipleSelection: NO];
[openPanel setResolvesAliases: NO];
[openPanel setCanChooseFiles: NO];

if ([openPanel runModalForTypes:nil] == NSOKButton)
{
    [[qcLayer setValue:openPanel filename]
     forInputKey:[@"movie_location" ;]]
}
}

可能な修正はありますか?

4

1 に答える 1