テキストを描画するための BackgroundText という UIView サブクラスがあります。
-(void) drawRect:(CGRect)rect
{
[@"synchronized." drawInRect:CGRectMake(0, 29, 320, 60) withFont:bigFont lineBreakMode:UILineBreakModeTailTruncation alignment:UITextAlignmentRight];
}
--
backgroundText = [[MMRoomBackgroundText alloc] initWithFrame:CGRectMake (0, 142 + 44, 320, 80)];
[self.view addSubview:backgroundText];
これらのテキストを画面から削除できると思い [backgroundText removeFromSuperview];
ますが、機能しません。
ありがとう。