I know it is a very simple Question, but the TextField is not Editable.
I have three UIViews, in each UIView contains three TextFields. The TextFields in the 2nd and 3rd UIView are working perfectly. But in the TextFields in the 1st UIView are really weird.
Let the TextFields are First, Middle , Last Name . First TextField is working fine, Middle is working only sometimes (it means i need to touch several times) and at last, the Last Name TextField is COMPLETELY not working.
What could be the problem ?
EDIT:
_bgScrollView.indicatorStyle = UIScrollViewIndicatorStyleWhite;
_bgScrollView.clipsToBounds = YES;
_bgScrollView.scrollEnabled = YES;
_bgScrollView.pagingEnabled = NO;
[_bgScrollView addSubview:FirstView];
[_bgScrollView addSubview:SecondView];
[_bgScrollView addSubview:ThirdView];
[self layoutSubViews];
_bgScrollView is scrollView Object
have you connected it with XIB and also delegate it ?Also have you implemented this function?