2012-11-09 4 views

답변

4

당신은 흥미로운이 링크를 찾을 수 있습니다 :

iOS 6 Runtime Headers search for "airplane"

확인 second hit 아웃 :

:

// RadiosPreferences.h 

@class <RadiosPreferencesDelegate>; 

@interface RadiosPreferences : NSObject { 
    struct __SCPreferences { } *_prefs; 
    int _applySkipCount; 
    <RadiosPreferencesDelegate> *_delegate; 
    BOOL _isCachedAirplaneModeValid; 
    BOOL _cachedAirplaneMode; 
    BOOL notifyForExternalChangeOnly; 
} 

@property BOOL airplaneMode; 
@property BOOL notifyForExternalChangeOnly; 
@property <RadiosPreferencesDelegate> * delegate; 


- (void)setAirplaneMode:(BOOL)arg1; 
- (id)init; 
- (void)setValue:(void*)arg1 forKey:(id)arg2; 
- (void)dealloc; 
- (void)synchronize; 
- (void)setDelegate:(id)arg1; 
- (id)delegate; 
- (BOOL)airplaneMode; 
- (void*)getValueForKey:(id)arg1; 
- (void)refresh; 
- (void)initializeSCPrefs:(id)arg1; 
- (void)notifyTarget:(unsigned int)arg1; 
- (void)setCallback:(int (*)())arg1 withContext:(struct { int x1; void *x2; int (*x3)(); int (*x4)(); int (*x5)(); }*)arg2; 
- (void)setNotifyForExternalChangeOnly:(BOOL)arg1; 
- (BOOL)notifyForExternalChangeOnly; 

@end 

여기에 (즉, GitHub의의 환매 특약의 추가 정보에서) 이러한 결과를 사용하는 방법의 예

+0

블루투스와 비슷한 것이 있습니까? –

+1

@yulz 다음은 귀하의 [검색 쿼리]입니다 (https://github.com/search?q=repo%3Anst%2FiOS-Runtime-Headers+bluetooth&repo=&langOverride=&start_value=1&type=Code&language=); 여기 [유망한 결과]가 있습니다 (https://github.com/nst/iOS-Runtime-Headers/blob/3686717e107fa36a990fac20c30da2da9a25b698/PrivateFrameworks/BluetoothManager.framework/BluetoothManager.h). – smileyborg

+0

답장을 보내 주셔서 감사합니다. 시험해 보겠습니다. –

관련 문제