我在 iOS 中使用了一个不适用于UIDocumentInteractionController
. 我希望其他开发人员在尝试使用此类时收到警告。我尝试了以下方法,但它不起作用。有任何想法吗?
我的应用程序.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