で動作しない iOS のセキュリティ フレームワークを使用していUIDocumentInteractionController
ます。他の開発者がこのクラスを使用しようとすると、警告が表示されるようにしてください。以下を試しましたが、うまくいきません。何か案は?
MyApp.pch
#import <Availability.h>
#ifndef __IPHONE_5_0
#warning "This project uses features only available in iOS SDK 5.0 and later."
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import "UIDocumentInteractionController+JVAdditions.h"
#endif
UIDocumentInteractionController+Additions.h
#import <UIKit/UIKit.h>
@interface UIDocumentInteractionController ()
+ (UIDocumentInteractionController *)interactionControllerWithURL:(NSURL *)url __attribute__((deprecated));
@end