我正在使用 Xcode 7.1 和 Swift 2。我有一个array
var ingredientsList: [String] = []
将包含显示在UITableView
. String
我想将中的每一个分开array
并分配给一个新string
变量,以便以后添加到一些html
. 我看了这里,很混乱,也处理了int
。我试图将它与我的一起应用,但显然使用string
它但它没有用。有人可以帮帮我吗?数组数据的一个例子是:cheese, pepperoni, sauce, olives, onions, sausage
. 谢谢你。
我ViewController
的 aUITableView
是:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cellIdentifier = "IngredientTableViewCell"
let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as! IngredientTableViewCell
cell.ingredientLabel.text = ingredientsList[indexPath.row]
// TOTAL of 50 ingredients Max
if indexPath.row == 0 {
if ingredientsList[0] != "" {
ingredientItem0 = ingredientsList[0]
}
}
if indexPath.row == 1 {
if ingredientsList[1] != "" {
ingredientItem1 = ingredientsList[1]
}
}
if indexPath.row == 2 {
if ingredientsList[2] != "" {
ingredientItem2 = ingredientsList[2]
}
}
if indexPath.row == 3 {
if ingredientsList[3] != "" {
ingredientItem3 = ingredientsList[3]
}
}
if indexPath.row == 4 {
if ingredientsList[4] != "" {
ingredientItem4 = ingredientsList[4]
}
}
if indexPath.row == 5 {
if ingredientsList[5] != "" {
ingredientItem5 = ingredientsList[5]
}
}
// ... it goes all the way down to a total of 50 ingredients
return cell
}
我有一个UIBarButtonItem
执行将[String]
数据导出为 PDF 并允许用户通过电子邮件发送出去的操作。
我的出口代码是:
let html =
/*HEADING*/"<head><center><br><h1><b>** <u>\(nameTextField.text!)</b></u> **</h1></br></center></head>" +
/*DIVIDER*/"<center>- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -</center>" +
/*BODY*/"<p><font size=5><br>\(ingredientItem0)</br> <br>\(ingredientItem1)</br> <br>\(ingredientItem2)</br> <br>\(ingredientItem3)</br> <br>\(ingredientItem4)</br> <br>\(ingredientItem5)</br> ... <br>\(ingredientItem49)</br></font></p>"
let fmt = UIMarkupTextPrintFormatter(markupText: html)
// Assign print formatter to UIPrintPageRenderer
let render = UIPrintPageRenderer()
render.addPrintFormatter(fmt, startingAtPageAtIndex: 0)
// Assign paperRect and printableRect
let page = CGRect(x: 0, y: 0, width: 595.2, height: 841.8) // A4, 72 dpi
let printable = CGRectInset(page, 0, 0)
render.setValue(NSValue(CGRect: page), forKey: "paperRect")
render.setValue(NSValue(CGRect: printable), forKey: "printableRect")
// Create PDF context and draw
let pdfData = NSMutableData()
UIGraphicsBeginPDFContextToData(pdfData, CGRectZero, nil)
for i in 1...render.numberOfPages() {
UIGraphicsBeginPDFPage();
let bounds = UIGraphicsGetPDFContextBounds()
render.drawPageAtIndex(i - 1, inRect: bounds)
}
UIGraphicsEndPDFContext();
现在,在我上面的UITableView
代码中,我将它分配indexPath.row
给String
variable
我创建的每个。我设置了多达 50 种成分。我不喜欢我设置了一个限制,如果用户只有 4 种成分或超过 50 种成分。在我的 pdf 导出中,它的行为就像有 50 种并为它们打印空白行。因此,一个可能很短的食谱将包含我分配的空白成分中不存在的空白页面。说得通?这很丑陋,但我不知道该怎么做。