初心者の質問、
プログラムで uitable を作成しましたが、テーブルの下部に送信ボタンを追加する必要があります。設定はテーブルとmybutton.frame = CGRectMake(xxxx)
は関係ありません。これは、uitable の私のコードです
CGRect tableViewFrame = self.view.bounds;
self.myTable = [[UITableView alloc] initWithFrame:tableViewFrame
style:UITableViewStyleGrouped];
self.myTable.autoresizingMask = UIViewAutoresizingFlexibleWidth |
UIViewAutoresizingFlexibleHeight;
[self.view addSubview:self.myTable];