什麼是超級視圖,什麼是子視圖?(iOS)什麼是超級視圖,什麼是子視圖
當我添加以下代碼:
[self.view addSubview:self.frontView];
// what does that mean ?
而且......
@property (nonatomic, strong) IBOutlet UIImageView *frontView;
[self.frontView superview] != nil // means ?
什麼是上海華?
什麼是超級視圖,什麼是子視圖?(iOS)什麼是超級視圖,什麼是子視圖
當我添加以下代碼:
[self.view addSubview:self.frontView];
// what does that mean ?
而且......
@property (nonatomic, strong) IBOutlet UIImageView *frontView;
[self.frontView superview] != nil // means ?
什麼是上海華?
superview
意味着一個持有另一個視圖的視圖。 subviews
表示持有/添加在「視圖」上的視圖。
讓我們說。你有一個觀點MyView
它有一個UIButton(loginButton)在其上。因此,MyView
是superview
那loginButton
。 loginButton is a subview for
MyView`。
「上海華」指持有的當前觀點。 「子視圖」是指由視圖所持有的觀點。
例如,您有一個視圖(將其稱爲MyView),其中包含一個按鈕。 按鈕也是一個視圖(UIButton是一種視圖)。 因此,MyView是按鈕的超級查看。 按鈕是MyView的子視圖。
子視圖是childview(其在任何視圖中添加)
上海華是parentview(在其上添加子視圖)
http://mattgemmell.com/2008/12/08 /什麼具備的,你試了/ –