के लिए इनपुट AccessoryView के रूप में मैंने UIToolBar
को UIBarButtonItem
के साथ UITextView
के लिए inputAccessoryView के रूप में जोड़ा है। यह ठीक काम करता है लेकिन UIBarButtonItem इसके फ्रेम के बाहर स्पर्श करने योग्य है, शायद दाएं से बाहर 50 पिक्सल। यह कोई बड़ा सौदा नहीं है लेकिन यह मुझे परेशान करता है। किसी को पता है क्यों?आईओएस - UIToolBar के रूप में UITextView
UIToolbar *toolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, self.view.bounds.size.height, 320, 44)];
toolBar.barStyle = UIBarStyleBlack;
toolBar.translucent = YES;
UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(doneWriting:)];
[toolBar setItems:[NSArray arrayWithObjects:doneButton, nil]];
self.messageTextView.inputAccessoryView = toolBar;
यदि ऐसा है, तो मेरे लिए यह "स्लॉपी" प्रोग्रामिंग जैसा लगता है जिसमें बटन 'सीमाओं के बाहर प्रतिक्रिया करता है, ओह ठीक है। –