使用UIMarkupTextPrintFormatter重复表头

时间:2013-08-21 19:13:18

标签: ios objective-c

我正在使用UIMarkupTextPrintFormatter打印,我似乎无法在每个页面上重复表头。这是我正在测试的HTML:

@"<html xmlns=\"http://www.w3.org/1999/xhtml\">"
"<head>"
"<title>KegID Manifest</title>"
"<style type=\"text/css\">"
" thead {display: table-header-group;}"
"</style>"
"</head>"
"<body>"
"<table><thead><tr><td>1</td><td>2</td></tr></thead>"
"<tr><td>a</td><td>b</td></tr>"
"<tr><td>a</td><td>b</td></tr>"
...repeated 200 times
"<tr><td>a</td><td>b</td></tr>"
"</table></body></html>"

使用UIMarkupTextPrintFormatter重复表头是否有更好的方法,还是需要切换使用HTML?

0 个答案:

没有答案