反応ネイティブアプリケーションを設定しようとしていますが、実際にはAooDekegate.m
ファイルの基本的な変更を行いました。 xCodeには経験がありません。私は何をしているのか分かりません。カスタムアプリケーションデフォルトNSDictionary
私はこのチュートリアルhttp://www.proreactnative.com/How-to-Develop-iOS-Apps-on-Linux-Using-React-Native/に従っていました。私はEdit AppDelegate.m
をやっているstuctを持っています。
私を助けてください。
これは私のコードです:
/** * Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import "AppDelegate.h"
#import <React/RCTBundleURLProvider.h>
#import <React/RCTRootView.h>
@implementation AppDelegate
NSDictionary *appDefaults = @{ // ERROR !! Initializer element is not a compile-time constant
@"host_preference": @"localhost",
@"port_preference": @"8081",
};
[[NSUserDefaults standardUserDefaults] registerDefaults:appDefaults]; // ERROR !! Expected ']'
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSURL *jsCodeLocation;
NSString *host = [[NSUserDefaults standardUserDefaults] stringForKey: @"host_preference"];
NSString *port = [[NSUserDefaults standardUserDefaults] stringForKey: @"port_preference"];
NSString * urlString = [NSString stringWithFormat: @"http://%@:%@/index.ios.bundle?platform=ios&dev=true", host, port];
jsCodeLocation = [NSURL URLWithString: urlString];
RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
moduleName:@"AwesomeProject"
initialProperties:nil
launchOptions:launchOptions];
rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
UIViewController *rootViewController = [UIViewController new];
rootViewController.view = rootView;
self.window.rootViewController = rootViewController;
[self.window makeKeyAndVisible];
return YES;
}
@end
ハ!どうもありがとう。それは働いているように見えます。私はそれが愚かな間違いのように見えるかもしれませんが、私はCやxCodeの構文がどのように見えるか分かりません。 – Michal
あなたは歓迎Michalです。あなたを助けてくれてうれしいです。 – Lepidopteron
@Michalちょっとした情報を追加するには、いくつかの変数を置く場所で宣言できますが、 'static'または' const'である必要があります。特定のエラー 'Initializer要素はコンパイル時定数ではありません.'では単にその場所に**定数**を宣言する必要があると言います。あなたの 'NSDictionary'は、内部の要素を変更できるので、定数ではありません。しかし、静的なNSString * someString = @ "HELLO"を宣言すれば、その文字列は時間的に変化しないので、動作します。同じ文字列インスタンスが、あなたの異なるAppDelegateインスタンスのすべてに渡されます(この特定のクラスのインスタンスだけ)。 –