我下面所选择的答案进口在Xcode私人框架
基本上,我希望能够控制飞行模式,在我的应用程序。 当我输入RadioPreferences.h
到我的应用程序,并尝试编译,我得到Expected Identifier
为@class <RadiosPreferencesDelegate>;
我不太知道下一步该怎么做。 我甚至不知道你可以转发声明的协议。
我下面所选择的答案进口在Xcode私人框架
基本上,我希望能够控制飞行模式,在我的应用程序。 当我输入RadioPreferences.h
到我的应用程序,并尝试编译,我得到Expected Identifier
为@class <RadiosPreferencesDelegate>;
我不太知道下一步该怎么做。 我甚至不知道你可以转发声明的协议。
首先,以下内容复制到指定的文件RadioPreferences.h
。 (来自https://stackoverflow.com/a/13095362/418715 )。
@protocol RadiosPreferencesDelegate
-(void)airplaneModeChanged;
@end
@interface RadiosPreferences : NSObject
{
struct __SCPreferences *_prefs;
int _applySkipCount;
id <RadiosPreferencesDelegate> _delegate;
BOOL _isCachedAirplaneModeValid;
BOOL _cachedAirplaneMode;
BOOL notifyForExternalChangeOnly;
}
- (id)init;
- (void)dealloc;
@property(nonatomic) BOOL airplaneMode;
- (void)refresh;
- (void)initializeSCPrefs:(id)arg1;
- (void)notifyTarget:(unsigned int)arg1;
- (void)synchronize;
- (void *)getValueForKey:(id)arg1;
- (void)setValue:(void *)arg1 forKey:(id)arg2;
@property(nonatomic) BOOL notifyForExternalChangeOnly; // @synthesize notifyForExternalChangeOnly;
@property(nonatomic) id <RadiosPreferencesDelegate> delegate; // @synthesize delegate=_delegate;
@end
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/System/Library/PrivateFrameworks
。 更换iPhoneOS6.0.sdk
与你的目标SDK的路径。 现在一切都应该编译,你就可以使用类。