LoginSignup
2
2

More than 5 years have passed since last update.

SwiftでUndocumentedAPIを使う

Posted at

Objective-CのカテゴリでUndocumented APIの宣言をします

UndocumentedAPICategories.h
@interface NSFileManager (HogeExtension)
- (NSString *)_web_pathWithUniqueFilenameForPath:(NSString *)path;
@end

ブリッジヘッダでインポートします

PROJECT-Bridging-Header.h
#import "UndocumentedAPICategories.h"

以上

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2