我的问题在于groundcontrol example。当我使用默认URL来获取消息问候语时,它可以正常工作,但是当我将其更改为我自己服务器上的plist的URL时。没有消息,它只是空白。
我要更改为自己的服务器的行如下:
static NSString * const kGroundControlDefaultsURLString =
@"http://ground-control-demo.herokuapp.com/defaults.plist";
我尝试下载确切的plist文件并将其上传到我的服务器,但这甚至都不起作用。
我注意到在浏览器中访问该文件时有一点不同,在上面的示例链接上会自动下载,但在我自己的服务器上它会在服务器中打开。
然后我尝试将以下内容添加到我的.httaccess文件中,以使我自己的服务器上的文件也自动下载,这是在添加此文件后执行的,但也无法从应用程序中运行。
<FilesMatch "\.(?i:plist)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
调试器在失败时不会吐出任何内容,当它运行时(从示例URL)它会吐出以下内容:
2012-11-11 17:18:40.163 GroundControl Example[13804:f803]
NSUserDefaultsDidChangeNotification: NSConcreteNotification 0x68b9e40 {name =
NSUserDefaultsDidChangeNotification; object = <NSUserDefaults: 0x6e83400>}
所以这是我的问题,基本上我希望能够通过将.plist文件上传到我的服务器并使用地面控制来处理它来使文件正常工作。
感谢Stackoverflow的帮助。
如果有帮助,这里有一些groundControl代码..
-from AppDelegate.m
static NSString * const kGroundControlDefaultsURLString = @"http://ground-control-demo.herokuapp.com/defaults.plist";
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[NSUserDefaults standardUserDefaults] registerDefaultsWithURL:[NSURL URLWithString:kGroundControlDefaultsURLString]];
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
}
-from ViewController.m
@implementation ViewController
- (void)updateValues {
self.greetingLabel.text = [[NSUserDefaults standardUserDefaults] objectForKey:@"Greeting"];
}
#pragma mark - UIViewController
- (void)viewDidLoad {
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserverForName:NSUserDefaultsDidChangeNotification object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *notification) {
NSLog(@"NSUserDefaultsDidChangeNotification: %@", notification);
[self updateValues];
}];
[self updateValues];
}
解
根据Jake Bonham的评论,
在我的服务器上的.httaccess文件中更改此行,使用了GroundControl类和所有。
ForceType application/octet-stream
八位字节流到x-plist
<FilesMatch "\.(?i:plist)$">
ForceType application/x-plist
Header set Content-Disposition attachment
</FilesMatch>
也许这有帮助
将plist加载到词典中首先工作。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//THIS IS THE PART THAT I CHANGED
NSURL* url = [NSURL URLWithString:@"http://mydomain.org/defaults.plist"];
NSDictionary* dict = [NSDictionary dictionaryWithContentsOfURL:url];
[[NSUserDefaults standardUserDefaults] registerDefaults:dict];
//AND FINALLY LOAD dict INTO NSUserDefaults
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
}
答案 0 :(得分:2)
我也遇到了这个问题。注销错误响应说它期望类型为“application / x-plist”并从我保存的.plist文件中获得“application / octet-stream”。
您的解决方案会删除GroundControl类。您正在将URL加载到dict中,然后将其保存到用户默认值。所以它有效。只是不使用GroundControl。