私は以下について詳細な説明が必要です:UIViewとUIViewControllerの違いは何ですか?
UIViewController
とは何ですか? これはどのような用途ですか?
私は、次のようなクラスを持っている:
class one
{
UINavigationController *nav = ...;
two *secondObject = ...;
// By use of it, I have push the new view class two//ok
}
class two
{
...
}
は、どのように私はクラスone
でsecondObject
を使用することができますか?
ウィンドウからのクラス階層開始は何ですか?