Swift初探
?
問題描述:
如上圖這是一個根導航器 ,里面包含多個section,和row ,根據用戶點擊的cell ,進入相應的頁面,由于每個頁面的初始化都不一樣 ,所以大部分的處理都會寫成這樣:
swtich(index.section) {
?? swtich:(index.row) {
//做相應處理
}
}
如果section 和row 比較多 也起來會很煩,而且如果中間的數據改動的畫后面的也相應的需要挪動。
例如 :一個a[2][3]的數組 ,如果需要移除a[1][1] 這個數的話 ,后面的處理也要相應改動,有什么方法 能夠更加簡潔靈活的處理這個問題呢?
?
我的思路就是 將相應的處理函數也放在一個對應的 b[2][3]數組里面,這樣不管客戶點擊那個cell ,我只需要根據indexpath 調用相應的數組內的處理函數即可。
?
?
// // ViewController.swift // swift函數應用 // // Created by apple on 15/9/11. // Copyright (c) 2015年 HUNANJIUYIAIJIA. All rights reserved. // import UIKit @IBDesignable class ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {@IBOutlet weak var List: UITableView!var ViewControllerArray:[Array< ()->() >]?let Textdescription:[Array<String>]=[["走路","騎車"],["睡覺","看書"]]override func viewDidLoad() {super.viewDidLoad()// Do any additional setup after loading the view, typically from a nib.// self.view.backgroundColor=UIColor.redColor() ViewControllerArray=[[{let Controller=ViewController2(nibName: "ViewController2", bundle: NSBundle.mainBundle())Controller.text="第一個頁面";self.navigationController!.pushViewController(Controller, animated: true)},{let Controller=ViewController2(nibName: "ViewController2", bundle: NSBundle.mainBundle())Controller.text="第二個頁面";self.navigationController!.pushViewController(Controller, animated: true)} ],[{let Controller=ViewController2(nibName: "ViewController2", bundle: NSBundle.mainBundle())Controller.text="第三個頁面";self.navigationController!.pushViewController(Controller, animated: true)},{let Controller=ViewController2(nibName: "ViewController2", bundle: NSBundle.mainBundle())Controller.text="第四個頁面";self.navigationController!.pushViewController(Controller, animated: true)} ]];// List.cellLayoutMarginsFollowReadableWidth=true;List.separatorStyle=UITableViewCellSeparatorStyle.SingleLine}override func didReceiveMemoryWarning() {super.didReceiveMemoryWarning()// Dispose of any resources that can be recreated. }func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {let TabID="cell"var cell:UITableViewCell?=tableView.dequeueReusableCellWithIdentifier(TabID) as UITableViewCell?;if cell==nil {cell=UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: TabID);}cell?.textLabel?.text=Textdescription[indexPath.section][indexPath.row]return cell!;}func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {return 20;}func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {return ViewControllerArray!.count}func numberOfSectionsInTableView(tableView: UITableView) -> Int {return ViewControllerArray!.count;}func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {ViewControllerArray![indexPath.section ][indexPath.row]()}}?
轉載于:https://www.cnblogs.com/TengSys/p/4835931.html
總結
- 上一篇: 黑马程序员——数组
- 下一篇: haskell读写文件相关(含二进制)