#author("2022-05-13T04:28:59+00:00","default:src128","src128") &tag(UITableViewDataSource); *目次 [#q992a09a] #contents *関連ページ [#x0d9fa51] *参考情報 [#e9252072] *疑問 [#y09d4001] **「optional func numberOfSections(in tableView: UITableView) -> Int」の「in」ってなに? [#d5ed9161] -inという文字列自体に特別な意味hない。Swiftの引数の名前のエリアス機能。呼び出し側ではinで指定し、呼ばれた側ではtableViewで使用する。 -関数のシグネチャが「numberOfSections(in:)」であることでもわかる。