Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
デバッグ モード プログラムで NSLog からのすべてのメッセージを含む UITextView を表示します。それは機能しますが、私の問題は次のとおりです。常に表示する必要があります。では、ステータス バーのように、ビューをプログラムで常に表示するにはどうすればよいでしょうか?
あなたのdidFinishLaunchingWithOptions
didFinishLaunchingWithOptions
以下を設定します
//Add the textView to the rootviewcontroller view UITextView *textView = [[UITextView alloc] init]; textView.frame = CGRectMake(0, 20, 320, 40); [self.window.rootViewController.view addSubview:textView];