I am creating view based application, where i will be going to next view, via addSubview method.
The problem is, when I turn the feature of VoiceOver ON, and addsubviews, it takes the accessory labels from previous views. That is , if I click on view at the rect, where there is label in previous view, then also, VoiceOver will detect it as accessibility label and start reading that label.
But, If I use, navigation controller to go to next view controller, I don't get any problem.
Can anyone please tell me, if apple itself has supported VoiceOver facility only for navigation based application, or there is some other solution for VoiceOver in view based applications ?
PS I have tried the same on some demo apps also, but same results.
そのため、現在のビューでボタンを含むサブビューを追加すると、アクセシビリティはサブビューの背後にあるラベルも読み取ります。追加されたビューのボタンを読み取るためのアクセシビリティと、前のビューの表示可能な部分の残りの部分のみが必要です(ラベルが追加されたビューの後ろに隠れることはありません)。それがiPhoneのナレーションのバグである場合、デフォルトでは、 addsubview でparentViewのラベルも読み取ることを誰かが言うことができますか?

