我将在调试模式程序中显示带有来自NSLog的所有消息的UITextView。它工作,但我的问题是:我必须一直显示它。那么,我怎样才能让我的视图在我的程序中显示所有时间,看起来像状态栏?
答案 0 :(得分: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];