1
從How to populate view in Xamarin我能夠用一堆字符串設置表視圖,但是如何訪問用戶選擇的字符串值?我明白在上一個問題中,我不得不重寫一些方法來填充表視圖。我必須這樣做才能訪問字符串值嗎?如果是這樣,我需要重寫哪個方法?如何從Xamarin中的表視圖訪問字符串值
從How to populate view in Xamarin我能夠用一堆字符串設置表視圖,但是如何訪問用戶選擇的字符串值?我明白在上一個問題中,我不得不重寫一些方法來填充表視圖。我必須這樣做才能訪問字符串值嗎?如果是這樣,我需要重寫哪個方法?如何從Xamarin中的表視圖訪問字符串值
解決了我的問題。需要時間來弄清楚,但需要做的是:
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`