Objective-C 背景透過処理

ViewController.m

#import "ViewController.h"


@interface ViewController ()


@end


@implementation ViewController


- (void)viewDidLoad

{

    [super viewDidLoad];

// Do any additional setup after loading the view, typically from a nib.

    

    // 背景に画像をセットする

    UIImage *image  = [UIImage imageNamed:@"img02"];

    self.view.backgroundColor = [UIColor colorWithPatternImage:image];

    

    {

        

        // 背景色を透明にしたいUIViewのインスタンスを作成する

        UIView *aView = [[UIView alloc] initWithFrame:self.view.frame];

        

        // opaque属性にNOを設定する事で、背景透過を許可する

        aView.opaque = NO;

        

        // backgroundColoralpha=0.0fの背景色を設定することで、背景色を透明にしている

        aView.backgroundColor = [UIColor colorWithRed:0.3

                                                green:0.2

                                                 blue:0.1

                                                alpha:0.8]; // transparent

        

        // 作成した背景色透明のViewを現在のViewの上に追加する

        [self.view addSubview:aView];

        

    }


}


- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}


@end

GitHub Clear

▫️参考ページ

  

目 次

 

コメントをお書きください

コメント: 1
  • #1

    Ela Foree (日曜日, 22 1月 2017 15:58)


    Thank you for the auspicious writeup. It in fact was a amusement account it. Look advanced to more brought agreeable from you! However, how could we keep in touch?