मैं समाधान ढूंढ रहा हूं और कोड का निम्नलिखित टुकड़ा पाया है। लेकिन मुझे नहीं पता कि दुर्भाग्य से इसका उपयोग कैसे किया जाए।मैं UITextView में वर्णों को कैसे सीमित करूं?
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)string {
NSUInteger newLength = [textField.text length] + [string length] - range.length;
return (newLength > 25) ? NO : YES;
}
बस परीक्षण प्रयोजनों के लिए मैं एक IBACTION
-(IBAction)checkIfCorrectLength:(id)sender{
[self textView:myTextView shouldChangeTextInRange: ?? replacementText: ?? ];
}
क्या मैं shouldChangeTextInRange
और replacementText
के लिए पारित करते की स्थापना की? या क्या मैं इसे पूरी तरह गलत कर रहा हूं?
यह एक प्रतिनिधिमंडल विधि है - UITextView और इसके प्रोटोकॉल के दस्तावेज़ पढ़ें। – Till