見てみましょう:
これは、グラデーションを作成するために使用するコードです。
gradView = [[UIView alloc] initWithFrame:CGRectMake(0, 440, self.view.frame.size.width, 80)];
gradView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"sepGrad.png"]];
gradView.alpha = 0.2;
[self.view addSubview:gradView];
そして .png ファイル:
iOS4 で透明な .png を正しく表示できないのはなぜですか?