请原谅我的初学者问题
在Swift函数中,cellForRowAt
是什么,看起来不是变量(indexPath
是),也不是类型(IndexPath
)。
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
答案 0 :(得分:0)
请在https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/Methods.html抓一个战利品。如果您指定了此类参数而不是<ImageView
android:id="@+id/image_preview"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
/>
,则使用该函数的开发人员将看到cellForRowAt
。所以你有机会更具描述性。
indexPath
你就这样使用它:
func increment(by amount: Int) {
//body of the method
}