UIViewController があり、その中に UIButton があります。
UIButton に入れたイベントは、新しい TTThumbsViewController PhotoThumbnail をロードすることです。
PhotoThumbnail *photoThumbnail = [[PhotoThumbnail alloc] initWithNibName:@"PhotoThumbnail" bundle:nil];
[self.navigationController pushViewController:photoThumbnail animated:YES];
UIButton をクリックすると、PhotoThumbnail が完全に読み込まれます。
問題: [戻る] ボタンをクリックすると、ビューは UIButton があった場所に戻りますが、UIButton の位置が上に移動しました!
この UIButton が移動する原因は何ですか?
注: UIViewController は、最終的にウィンドウに追加される UITabBarController の一部です。
tabBarController がウィンドウに追加されます
[window addSubview:tabBarController.view];
ここでの私の状況の説明が明確であることを願っています。