0

我将在调试模式程序中显示一个 UITextView,其中包含来自 NSLog 的所有消息。它有效,但我的问题是:我必须一直展示它。那么,我怎样才能让我的视图在我的程序中一直显示,看起来像状态栏?

4

1 回答 1

2

在你的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];
于 2012-06-11T21:18:13.027 回答