我正在尝试打印一个简单的NSString值.但它给了我一个对话:
"Printing Now Allowed This application is not allowed to print. Please contact your application vendor for an update."
我使用的代码是:
-(void)printText:(NSString*)text { NSTextView *printView = [[NSTextView alloc] initWithFrame:NSMakeRect(0,468,648)]; [printView setString:text]; [[NSPrintOperation printOperationWithView:printView] runOperation]; }
有任何想法吗?
解决方法
找到答案了!
我需要在项目设置中的目标下的“摘要”下的“权利”下选中“允许打印”.