タグ付けされた質問 「uitableviewsectionheader」

10
UITableViewセクションヘッダーのフォントサイズの変更
誰かがUITableViewセクションヘッダーのテキストのフォントサイズを変更する最も簡単な方法を教えてもらえますか? 次の方法を使用してセクションタイトルを実装しています。 - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section 次に、この方法を使用してセクションヘッダーの高さを変更する方法を理解しました。 - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section このメソッドを使用して、UITableViewセルにデータを入力しています。 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath しかし、セクションヘッダーテキストのフォントサイズを実際に大きくする方法、つまりフォントスタイルをどうするかについて、私は行き詰まっていますか? 誰かが助けてくれますか?ありがとう。


1
折りたたみ可能なセクション:[アサート] preReloadFirstVisibleRow(0)の新しいグローバル行インデックスを特定できません
UITableViewControllerに折りたたみ可能なセクションヘッダーを実装しています。 セクションごとに表示する行数を決定する方法は次のとおりです。 override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return self.sections[section].isCollapsed ? 0 : self.sections[section].items.count } 「isCollapsed」のブール値を使用してセクション情報を保持する構造体があります。 ここに私が彼らの状態を切り替える方法があります: private func getSectionsNeedReload(_ section: Int) -> [Int] { var sectionsToReload: [Int] = [section] let toggleSelectedSection = !sections[section].isCollapsed // Toggle collapse self.sections[section].isCollapsed = toggleSelectedSection if self.previouslyOpenSection != -1 && …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.