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){
我希望这对人们有所帮助,并且我不会对该帖子投反对票,因为我真的无法通过任何搜索找到它。
通过反复试验解决。