ios - UIAccessibility issue - becomesFirstResponder -


i have uiviewcontroller viewdidappear triggers textfield keyboard on landing.

- (void)viewdidappear:(bool)animated{       [super viewdidappear:animated];       [self.valuetextfield becomesfirstresponder];  } 

when voice on enabled, default behavior start navigationbar item's title label. since view launches keyboard on start, voice on focus on textfield split second before starts navigationbaritem's title label. there way avoid voice on focus on textfield , start title label on navigation item?


Comments