我想问一下如何在tableView和webView之间正确发送pdfs。 为此,我有2个字符串,其中包含tableView中的行名称,另一个字符串具有我想要传输的pdfs的名称
我一直在遵循教程中的相应步骤,但我在prepareForSegue
方法中遇到此错误:
Could not cast value of type 'UITableViewCell' (0x1079f1a18) to 'NSNumber' (0x106ab4b88).
错误在这一行:
var seleccion = sender as! Int
当我点击tableView
中的一行时出现错误,因此无法显示pdf
我的代码:
class PersonajesHistoricosViewController: UIViewController {
var arregloPdfs = ["jobs1.pdf" , "disney1.pdf","jobs1.pdf"]
var arregloGanadores : [String] = [String]()
var pdfSeleccionado:Int = 0
override func viewDidLoad() {
super.viewDidLoad()
arregloGanadores = ["Steve Jobs" , "Walt Disney" , "Arnold Schwarzenegger"]
}
//****************TABLE VIEW*************************
func numberOfSectionsInTableView(tableView: UITableView) -> Int
{
return 1
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
//make sure you use the relevant array sizes
return arregloGanadores.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
var cell :UITableViewCell = tableView.dequeueReusableCellWithIdentifier("Cell") as! UITableViewCell
//Aqui podria hacer referencia a otro array con nombres en especifico para cada uno de los pdfs
cell.textLabel?.text = self.arregloGanadores[indexPath.row]
cell.imageView?.image = UIImage(named:"Libro.jpg")
return cell
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
tableView.deselectRowAtIndexPath(indexPath, animated: true)
pdfSeleccionado = indexPath.row
self.performSegueWithIdentifier("haciaVisorPdf", sender: pdfSeleccionado)
}
//Por si quiere cambiar el ancho de cada renglon o celda
// func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
//
// return 150
// }
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)
{
// HERE IS THE ERROR
var seleccion = sender as! Int
if segue.identifier == "haciaVisorPdf"
{
var visorPdf: WebView = segue.destinationViewController as! WebView
visorPdf.nombreArchivo = self.arregloPdfs[seleccion]
}
}
}
import UIKit
class WebView: UIViewController {
@IBOutlet weak var webView: UIWebView!
var nombreArchivo:String = ""
override func viewDidLoad() {
super.viewDidLoad()
println("\(nombreArchivo)")
zoom()
mostrarPdf()
}
func zoom () {
webView.scalesPageToFit = true
}
func mostrarPdf(){
//Paso 1 : conseguir direccion en tu bundle de tu archivo pdf
var direccionPdf = NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource(nombreArchivo, ofType: "pdf")!)
println(direccionPdf)
if let pdfData = NSData(contentsOfURL: direccionPdf!) {
cargarDatos(pdfData)
}
else {
}
}
func cargarDatos(datosDePdf:NSData) {
self.webView.loadData(datosDePdf, MIMEType: "application/pdf", textEncodingName: "utf-8", baseURL: nil)
}
}
答案 0 :(得分:0)
根据Apple的说法:
发件人:发起segue的对象。您可以使用此参数根据启动segue的控件(或其他对象)执行不同的操作。
可以从多个来源触发Segues,因此请使用segue和sender参数中的信息来消除应用中不同逻辑路径之间的歧义。例如,如果segue源自表视图,则sender参数将标识用户单击的单元格。您可以使用该信息在目标视图控制器上设置数据。
您的问题是sender
并未用于您想要的内容。但是pdfSeleccionado
中的didSelectRowAtIndexPath
与您的indexPath.row
有一个全局变量prepareForSegue
,您可以使用它来尝试在didSelectRowAtIndexPath
中传递它,因为您首先输入override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?){
if segue.identifier == "haciaVisorPdf" {
var visorPdf: WebView = segue.destinationViewController as! WebView
visorPdf.nombreArchivo = self.arregloPdfs[pdfSeleccionado]
}
}
然后手动执行segue,如下所示:
{{1}}
我希望这对你有所帮助。