2
當我的NSTextField打印,內容在頁面的中心顯示出來,而不是合理的左上角:的NSTextField打印
NSTextView *printView = [[NSTextView alloc] initWithFrame:NSMakeRect(0, 0, 468, 648)];
[printView setString:text];
[printView autorelease];
[[NSPrintOperation printOperationWithView:printView] runOperation];
我也曾嘗試
NSPrintInfo *printInfo = [NSPrintInfo sharedPrintInfo];
[printInfo setVerticallyCentered:NO];
[printInfo setHorizontallyCentered:NO];
我不想自定義文檔,只能打印標題和正文。 – user1122069