11
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

iOSアプリの部品の表示/非表示を切り替える方法

Last updated at Posted at 2013-11-14

#alphaを設定する

ある部品(例えばボタンやラベルなど)をこのときは表示したい、
別のときは表示したい、ということが多くあると思います。

例えばbtnという名前のボタンをつくったとしましょう。

 btn.alpha = 0; //表示されない
 btn.alpha = 1; //表示される

となるので、まずはじめに

[self.view addSubview:btn];

しておけば、あとは条件によってalpha値を変えるだけです。
alphaが0のときは、そこを押してもボタンは押されません。

ボタンでも、ラベルでも、セグメンテッドコントロールでも、
大概のものはこの方法が適用できます。

removeFromSuperviewがなぜかつかえなかったのだ…
わりと始めの方で悩む問題だと思います。

11
13
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?