我想在我的应用程序中打印一个由文本字段和3个标签组成的页面。问题是我想按下“打印”按钮,以便它不会出现在纸上。
有人可以给我看一些示例代码吗?
答案 0 :(得分:0)
[button addTarget:self action:@selector(printPage:) forControlEvents:UIControlEventTouchUpInside];
- (void)printPage:(id)sender
{
// Your print command code
// If you want to set the button visible again, you can implement completion handler callback using block implementation
((UIButton *)sender).hidden = YES;
}