当我在代码中没有bookCoverUp.alpha = 0;
时,将运行以下IBAction,但是一旦我添加该代码并尝试运行该程序,IBAction就会完全停止工作。
-(IBAction)done:(id)sender
{
bookCoverUp.alpha = 0;
//this sends you to the desired viewcontroller
SimpleTableView *newWindow = [self.storyboard
instantiateViewControllerWithIdentifier:@"SimpleTableView"];
[self.navigationController pushViewController:newWindow animated:YES];
}
答案 0 :(得分:4)
答案 1 :(得分:0)
如果您要创建透明按钮,请将按钮类型更改为“自定义”(或代码中的UIButtonTypeCustom),并且不要为其指定背景颜色或背景图像 - 默认情况下它是透明的。