1

ライブコード アプリケーションにネイティブの Android リスト ピッカー (スピナー) と IPhone リスト ピッカーを追加したいと考えています。

ありがとう

4

2 に答える 2

1

mobilePick コマンドを使用する

put the weekdayNames into tDays
put lineoffset("Tuesday", tDays) into tInitialIndex
mobilePick tDays, tInitialIndex

-- iOS only example
put "Mon" & return & "Tue" into tDays
put "Jan" & return & "Feb" & return & "Mar" & return & "Apr" into tMonths
mobilePick tDays, 2, tMonths, 3, "checkmark"
answer the result with "Okay"

LC辞書より

于 2013-07-24T06:15:47.610 に答える