如何将UIView一直放在顶部屏幕上?

时间:2012-06-11 21:14:23

标签: iphone ios uiview uiwindow

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

1 个答案:

答案 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];