¡@

Home 

2014/10/15 ¤U¤È 10:13:40

iphone Programming Glossary: scrollview.contentinset

How do I scroll the UIScrollView when the keyboard appears?

http://stackoverflow.com/questions/13161666/how-do-i-scroll-the-uiscrollview-when-the-keyboard-appears

CGRectValue .size UIEdgeInsets contentInsets UIEdgeInsetsMake 0.0 0.0 kbSize.height 0.0 scrollView.contentInset contentInsets scrollView.scrollIndicatorInsets contentInsets If active text field is hidden by keyboard scroll it so it's..

Change Default Scrolling Behavior of UITableView Section Header

http://stackoverflow.com/questions/664781/change-default-scrolling-behavior-of-uitableview-section-header

CGFloat sectionHeaderHeight 40 if scrollView.contentOffset.y sectionHeaderHeight scrollView.contentOffset.y 0 scrollView.contentInset UIEdgeInsetsMake scrollView.contentOffset.y 0 0 0 else if scrollView.contentOffset.y sectionHeaderHeight scrollView.contentInset.. UIEdgeInsetsMake scrollView.contentOffset.y 0 0 0 else if scrollView.contentOffset.y sectionHeaderHeight scrollView.contentInset UIEdgeInsetsMake sectionHeaderHeight 0 0 0 Only problem here is that it looses a little bit of bounce when scrolling back..

Keyboard Scroll on Active Text Field - Scrolling to Out of View?

http://stackoverflow.com/questions/7193787/keyboard-scroll-on-active-text-field-scrolling-to-out-of-view

CGRectValue .size UIEdgeInsets contentInsets UIEdgeInsetsMake 0.0 0.0 kbSize.height 0.0 scrollView.contentInset contentInsets scrollView.scrollIndicatorInsets contentInsets If active text field is hidden by keyboard scroll it so it's.. is sent void keyboardWillBeHidden NSNotification aNotification UIEdgeInsets contentInsets UIEdgeInsetsZero scrollView.contentInset contentInsets scrollView.scrollIndicatorInsets contentInsets void textFieldDidBeginEditing UITextField textField activeField..

Move UIScrollView when keyboard comes into place

http://stackoverflow.com/questions/8590636/move-uiscrollview-when-keyboard-comes-into-place

CGRectValue .size UIEdgeInsets contentInsets UIEdgeInsetsMake 0.0 0.0 kbSize.height 0.0 scrollView.contentInset contentInsets scrollView.scrollIndicatorInsets contentInsets If active text field is hidden by keyboard scroll it so it's..