3

これが本当にばかげた質問であれば申し訳ありませんが、私はiOSが初めてです。私はこれをやろうとしています:

ここに画像の説明を入力

表のセルは、コンテンツが変更されないため静的です (オプションは常に同じです)。また、送信ボタンとキャンセル ボタンを下に配置し、赤い背景を画像に置き換える必要もあります。

私の問題は、次のようなエラーが表示されることです。

静的テーブル ビューは、uitableviewcontroller に埋め込まれている場合にのみ有効です

私の質問は、他の要素と同様に、ビュー内にテーブルを埋め込むにはどうすればよいですか?

助けてくれてありがとう:)

4

1 に答える 1

4

There are two relatively simple options to build a screen like that:

  1. Make your controller a `UITableViewController, add two sections to the bottom of your static part, and put custom cells with buttons into these two sections, or
  2. Define the static content of your table in code.

The look of your screen will change slightly for option 1, but it is important only when you have many cells, forcing the sections with buttons off the screen until the user scrolls.

The second option requires writing some code, but not too much to cause you too much inconvenience.

于 2012-08-18T17:55:19.693 に答える