テキストベースのコンテンツを使用して、非常に単純なシーンになると思っていたものを作成しています。フォーマットを、見出しの後にテキストの段落が続き、その後に別の見出しが続くようにしたいと考えています。
現在、インターフェイスビルダーを使用して、ラベル、UITextView、別のラベル、別の UITextView などを作成しています。これは少し長いように見えるので、より良い方法はありますか。
ありがとう
シェル
Sections と同じ数の UITableView を試すことができないのはなぜですか。
titleForHeaderInSection
セルの見出し &&に使用UItextField
します。
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 1 ;
}
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView{
return YourNEed;
}
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
// return header_Name accordind to the Sections
switch (section) {
case 0:
return @"1st Label";
// ...........
}