0
everyone: 我可以訪問到TableView中的行內容:這是我的問題,我試圖在單擊時顯示TableView中選定行的內容。如何通過單擊行
在我通過這種方式添加的行onRowRender,
local function onRowRender(event)
local row = event.row
local myText = ""
local myText = display.newText(row,"Text to show",150,row.contentHeight/2,native.systemFontBold,30)
end
在我已經試過這個onRowTouch事件,
local function onRowTouchTable(event)
print(menuPedidos._view._rows[row.index]) //it return a table, I assumed the row selected
print(menuPedidos._view._rows[row.index].mytext) //it return nil
end
我所需要的,是保存在對象中的文本mytext的
我會感謝所有幫助,謝謝
好的我明白了,但存在另一種解決方案?想知道。 –
我不知道另一個解決方案。 – ldurniat