Posts by user46593 • 1 point
1 post
-
0
votes1
answer100
viewsA: Swift - Move Uitextfield up when it is inside a Uitableviewcell
In the delegate of the textFiled textFieldShouldBeginEditing, you can use the function below: [self.scrollView setContentOffset:CGPointMake(0,textField.center.y-TSIZE) animated:YES]; TSIZE can be…