Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
変数 keybutton を設定して、キーボード ビューですべてのボタンを取得できるようにしようとしています。書き方がわからないけど。この初期化の別の形式は、NSArray を使用したものです。 for(UIButton *keyButton in self.KeyBoardButtons){
for(UIButton *keyButton in self.KeyBoardButtons){
NSSArray (keyboardButtons) が機能するので、それを置き換えて UIView のボタンを返すにはどうすればよいですか。
私はついにそれを理解しました。
for(UIButton *keyButton in keyboardView.subviews){
私はこれが人々に役立つことを願っています、そして私はどんな検索でもそれを本当に見つけることができなかったので、私はその投稿に反対票を投じないでください。
試行錯誤で解決しました。