I think you are facing a UIAutomation error that has existed forever.
The easiest way to get around this error is to set the accessibilityValue value to your text in the code.
Something like that.
NSString *valueString = [NSString stringWithFormat:@"%d", value]; self.label.text = valueString; self.label.accessibilityValue = valueString;
Helps those people who use Voice Over too; -)
Matthias bauch
source share