मैं कस्टम एनएसटीबलसेलव्यू के साथ एक एनएसटीबलव्यू बनाना चाहता हूं।कस्टम एनएसटीबल व्यू?
- सेल (देखें निब) के लिए एक निब फ़ाइल CustomCell.xib
- CustomCell
- बुलाया मेरे सेल के लिए एक कस्टम वर्ग कहा जाता है:
यहाँ है कि मैं क्या अभी है और मेरे में कोड AppDelegate.m:
एच पहले मैं अपने तालिका दृश्य प्रोग्राम के रूप में बनाने के लिए: मैं झुका है अपने कस्टम सेल के लिए निब फ़ाइल में
- (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
// In IB the tableColumn has the identifier set to the same string as the keys in our dictionary
NSString *identifier = [tableColumn identifier];
if ([identifier isEqualToString:@"myCell"]) {
// We pass us as the owner so we can setup target/actions into this main controller object
CustomCell *cellView = [tableView makeViewWithIdentifier:identifier owner:self];
// Then setup properties on the cellView based on the column
cellView.textField.stringValue = @"Name";
return cellView;
}
return nil;
}
:
NSScrollView *tableContainer = [[NSScrollView alloc]initWithFrame:NSMakeRect(self.window.frame.size.width-TABLEWIDTH, 0, TABLEWIDTH, self.window.frame.size.height)];
NSTableView *tableView = [[NSTableView alloc] initWithFrame:NSMakeRect(self.window.frame.size.width-TABLEWIDTH, 0, TABLEWIDTH, self.window.frame.size.height)];
NSTableColumn *firstColumn = [[[NSTableColumn alloc] initWithIdentifier:@"firstColumn"] autorelease];
[[firstColumn headerCell] setStringValue:@"First Column"];
[tableView addTableColumn:firstColumn];
tableView.dataSource = self;
tableView.delegate = self;
[tableContainer setDocumentView:tableView];
tableContainer.autoresizingMask = NSViewHeightSizable | NSViewMinXMargin;
[self.window.contentView addSubview: tableContainer];
और यहाँ प्रतिनिधि विधि जहां मैं अपने कस्टम सेल कोड डाल करने के लिए चाहते हैं कस्टमकेल नामक मेरी कस्टम क्लास के साथ सेल व्यू को एनएसटीबलसेल व्यू उपclasses। मैंने अभी तक कोई और कदम नहीं उठाया है। तो मेरा CustomCell.m केवल डिफ़ॉल्ट प्रारंभिक कोड है। मैंने इसे छुआ नहीं है। और मैंने अपनी निब फ़ाइल में कुछ और नहीं किया, इसलिए मैंने फ़ाइल के स्वामी या ऐसा कुछ भी नहीं बदला क्योंकि मुझे वास्तव में नहीं पता कि क्या करना है। क्या कोई मदद कर सकता है? मैंने ऐप्पल दस्तावेज से नमूना फाइलों को देखा, लेकिन शोध के दिनों के बाद मुझे कोई समाधान नहीं मिला। यदि आप मेरी मदद कर सकते हैं तो मैं वास्तव में सराहना करता हूं।
क्या आप यह स्पष्ट कर सकते हैं कि समस्या क्या है? मैंने आपकी पोस्ट को दो बार पढ़ा है और मैं नहीं समझ सकता कि आपके पास क्या समस्या है। – FluffulousChimp
मेरे पास एक एनएसटीबल व्यू है और मैं कस्टम उपस्थिति वाले सेल चाहता हूं। इसलिए मैंने एक निब व्यू फ़ाइल स्थापित की है जहां मेरे पास यह NSTableCellView सेल है। अब, मैं nib फ़ाइल से उन विशेष कक्षों को प्रदर्शित करने के लिए प्रोग्रामेटिक रूप से अपना एनएसटीबल व्यू बनाना चाहता हूं। हालांकि उपरोक्त कोड वास्तव में मेरी तालिका में कुछ भी नहीं बदलता है। समझ में आता है ? –
क्या आपने इसे हल किया? मैं एक ही मुद्दे पर ठोकर खाई है ... – Gossamer