1

メールに似たアプリをプログラミングしています。したがって、メッセージにファイルを添付するときに、ファイル名と小さな画像 (アイコン) を表示したい場合、このアイコンはファイルの種類に応じたものにする必要があります。 ...

これらの小さな画像を見つける方法を知っている人はいますか? または代表的な例はありますか?

高度な感謝

4

1 に答える 1

2

これが iOS 用の場合は、UIDocumentInteractionControllerを使用できます。

NSURL *url = [NSURL fileURLWithPath:pathToYourFile];
UIDocumentInteractionController *diac = [UIDocumentInteractionController interactionControllerWithURL:url];
NSArray *icons = diac.icons;
if ([icons count] > 0) {
    // This is the smallest available icon:
    UIImage *icon = [icons objectAtIndex:0];
} else {
    // No icon found.
    // According to the documentation, this case *should not* occur...
}
于 2013-04-25T08:37:22.323 に答える