带箭头的透明屏幕

时间:2013-02-13 05:53:30

标签: iphone ios objective-c cocoa-touch

我想制作这样的屏幕并想在其上绘制箭头。并使事物可见现在问题是我无法使用全屏图像,因为该应用程序也适用于iphone和ipad。我可以从iphone完成这项任务吗? Image

2 个答案:

答案 0 :(得分:1)

UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageWithName:@"your_image"]];
[imageView setAlpha = 0.5];  //or whatever alpha you want between 0 and 1
[imageView setFrame:CGRectMake(x,y,w,h)];
[self.view addSubview:imageView];

答案 1 :(得分:0)

你应该试试这个

1在背景颜色上给出背面颜色 2降低黑色的不透明度
3它为您提供您想要的