0

PSSwitchCell から BOOL 値を読み取ろうとしていますが、BOOL は常に真になります。これは私のコードです (ロゴの微調整 (iOSopendev))

これは .xm ファイルで、iosopendev ロゴ調整テンプレートと単純な設定ローダーを使用しています。

また、これは単なる微調整であることはわかっていますが、これがどのように機能するかを学んでいます。オンラインでチュートリアルを見てきましたが、これが機能しない理由がわかりません。

#import <UIKit/UIKit.h>
#define plist_path @"/Library/PreferenceLoader/Preferences/MyTweak.plist" 

#define listenToNotification$withCallBack(notification, callback);CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, (CFNotificationCallback)&callback, CFSTR(notification), NULL, CFNotificationSuspensionBehaviorHold);
%hook SBApplicationIcon

+ (id)sharedInstance
{
%log;

return %orig;
}

static NSMutableDictionary *plistDict = nil;
static void loadSettings(void) {
if (plistDict) {
    [plistDict release];
    plistDict = nil;
}
plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:plist_path];

}
-(void)launch
{
    NSString *number = [[[plistDict objectForKey:@"enabled"] intValue];

    if ([number isEqualto:@"1"]) {
    NSString *appName = [self displayName];
    NSString *message = [NSString stringWithFormat:@"The app %@ has been launched", appName, nil];
    UIAlertView *alert1 = [[UIAlertView alloc] initWithTitle:appName message:message delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
      alert1.delegate = self;
    [alert1 show];
    [alert1 release]; }
else {
    //Do nothing!
}
%orig;
}

- (void)messageWithNoReturnAndOneArgument:(id)originalArgument
{
%log;

%orig(originalArgument);

// or, for exmaple, you could use a custom value instead of the original argument: %orig(customValue);
}

- (id)messageWithReturnAndNoArguments
{
    %log;
    id originalReturnOfMessage = %orig;

// for example, you could modify the original return value before returning it:   [SomeOtherClass doSomethingToThisObject:originalReturnOfMessage];

return originalReturnOfMessage;
}

%end
%ctor {
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    %init;
    listenToNotification$withCallBack("dylankelly.MyDev.MyTweak-preferencesChanged", loadSettings);
    loadSettings();
    [pool drain];
}

これは、設定に表示される私の plist (その一部) ファイルです。

<dict>
    <key>cell</key>
        <string>PSSwitchCell</string>
        <key>default</key>
        <integer>0</integer>
        <key>defaults</key>
        <string>dylankelly.MyDev.MyTweak</string>
        <key>TrueValue</key>
        <integer>1</integer>
        <key>FalseValue</key>
        <integer>0</integer>
        <key>key</key>
        <string>enabled</string>
        <key>label</key>
        <string>Show</string>
        <key>PostNotification</key>
        <string>dylankelly.MyDev.MyTweak-preferencesChanged</string>

</dict>
4

1 に答える 1

1

オブジェクトではないため、BOOL を plist またはディクショナリに格納することはできません。値を NSNumbers として保存します。false の場合は @(0)、true の場合は @(1)。

次のデータ型を値として .plist ファイルに格納できます。

-NSArray 
-NSMutableArray 
-NSDictionary 
-NSMutableDictionary 
-NSData
-NSMutableData 
-NSString 
-NSMutableString 
-NSNumber 
-NSDate
于 2013-04-17T16:24:21.813 に答える