2013-08-18 27 views

回答

1

解决了我的问题。需要时间来弄清楚,但需要做的是:

1. Go to the .xib file in Xcode. 
2. Double or triple click the inner cell to get the cell isolated. 
3. Connect that cell to the controller file or the .h file in Xcode. 
4. Save. 

1. Then go to Xamarin. 
2 Use use the table view object, which in my case is `tableview` 
3. Set the object's `Cell` property to the the `NSTextFieldCell` object. `tableview.Cell = yourNSTextfieldObject` 
4. To get the string value: `tableview.Cell.StringValue` 
相关问题