swift语法,var之前的额外单词

时间:2016-10-17 13:54:46

标签: ios swift

请原谅我的初学者问题

在Swift函数中,cellForRowAt是什么,看起来不是变量(indexPath是),也不是类型(IndexPath)。

public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell

1 个答案:

答案 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
}