創建了一個textView
UITextView*txtview = [[UITextView alloc] initWithFrame:CGRectMake(x,y,25,25)];
txtview.backgroundColor = [UIColor clearColor];
txtview.textColor = [UIColor redColor];
txtview.font = [UIFont fontWithName:@"TrebuchetMS-Bold" size:18];
txtview.inputView = segmentKB;
txtview.delegate = self;
[self.view addSubview:txtview];
[txtview sizeToFit];
如果編輯這個textView,就會發生一些移動。
應該怎麼解決額?其中inputView是分段控制,如果換成正常的鍵盤還是會出現這樣的問題。
將textView的高度從25改到35