我正在尝试通过调用drawRect:
或添加出现在前台的视图来在前台显示消息。消息必须在按下按钮后显示。我注意到只有在按下按钮时调用的函数退出时才会显示该消息。
- (IBAction)testBtnPress:(id)sender {
TestView *testView = [[TestView alloc] initWithFrame:self.view.frame];
[self.view addSubview:testView];
// processing to be done while the message is displayed
}
在类drawRect:
中调用TestView
。待处理完成后显示带有消息的矩形,这对我的应用程序不方便。有没有办法在处理运行时显示消息(消息将是“处理中...请稍候”)。谢谢。