我想做一个这样的屏幕并想在上面画箭头。并使事物可见。现在的问题是我不能使用全屏图像,因为该应用程序也适用于 iphone 和 ipad。我可以从 iphone 执行此任务吗?
问问题
130 次
2 回答
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];
于 2013-02-13T06:04:25.970 回答
0
你应该试试这个
1 在背景颜色上返回颜色 2 降低黑色的不透明度
3 它为您提供您想要的
于 2013-02-13T06:45:22.267 回答