i have Just In time property, which was working fine but now xcode 11.4 started complaining about it. please look at following code
- (UITextField *)searchTextField
{
if (!_searchTextField)
{
_searchTextField = [self firstSubViewOfKindOfClass:[UITextField class]];
}
return _searchTextField;
}
Error :Use of undeclared identifier '_searchTextField'
i have a property defined for it like below
@property (nonatomic, strong) UITextField *searchTextField;