中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

swift表格控件怎么用

發布時間:2022-01-30 12:47:02 來源:億速云 閱讀:148 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關swift表格控件怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

具體內容如下

1、效果圖

swift表格控件怎么用

2、該控件(UITableView) 代碼注意的地方:

A、ViewController 不單單繼承于 UIViewController,還有 UITableViewDelegate,UITableViewDataSource。

B、要自己重新實現UITableView的3個方法。分別是:numberOfSectionInTableView(table:UITableView), tableView(table:UITableView, numberOfRowsInSetion section:Int), tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath)

3、我使用的Xcode版本:7.2;

4、完整 源碼

import UIKit

class ViewController: UIViewController, UITableViewDelegate,UITableViewDataSource{

    
    let ctrlName = ["按鈕", "標簽", "文本框", "提示框", "開關按鈕"];
    var tableView:UITableView?;
    
    override func loadView() {
        super.loadView();
    }
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        /// 創建視圖
        tableView = UITableView(frame: view.frame, style: .Plain);
        tableView!.dataSource = self;
        tableView!.delegate = self;
        
        tableView?.registerClass(UITableViewCell.self, forCellReuseIdentifier: "SwiftCell");
        view.addSubview(tableView!);
        
        
        /// 創建標簽
        let headerLabel = UILabel(frame: CGRectMake(0, 0, view.bounds.size
            .width, 30));
        /// 設置標簽屬性
        headerLabel.backgroundColor = UIColor.blackColor();
        headerLabel.textColor = UIColor.whiteColor();
        headerLabel.numberOfLines = 0;
        headerLabel.lineBreakMode = NSLineBreakMode.ByWordWrapping;
        headerLabel.text = "常見UIKIt控件";
        headerLabel.font = UIFont.italicSystemFontOfSize(20);
        
        /// 在tableView的頂部添加該label
        tableView!.tableHeaderView = headerLabel;
    }
    /// 設置分區
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1;
    }
    
    /// 返回表格行數
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return ctrlName.count;
    }
    
    /// 創建單元格顯示內容,(創建indexPath指定的單元)
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        
        /// 為了提高表格顯示性能,以創建完成的單元重復使用
        let identify = "SwiftCell";
        /// 同一形式的單元格重復使用,在聲明時已注冊
        let cell = tableView.dequeueReusableCellWithIdentifier(identify, forIndexPath: indexPath);
        cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator;
        cell.textLabel?.text = ctrlName[indexPath.row];
        
        return cell;
    }
    
    /// UITableViewDelegate方法,處理列表項選中事件
    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        
        tableView.deselectRowAtIndexPath(indexPath, animated: true);
        let itemString = ctrlName[indexPath.row];
        
        /// 創建提示框
        let alertView = UIAlertController(title: "提示", message: "你選中了\(itemString)", preferredStyle: .Alert);
        /// 向提示框中增加按鈕
        let alertAction = UIAlertAction(title: "確定", style: UIAlertActionStyle.Default, handler: {(action)->Void in});
        alertView.addAction(alertAction);
        
        presentViewController(alertView, animated:true, completion:nil);
    }
    
    
    

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


}

關于“swift表格控件怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东山县| 高尔夫| 江西省| 尼勒克县| 轮台县| 客服| 恩平市| 方城县| 盘山县| 怀仁县| 海南省| 观塘区| 马边| 衢州市| 壤塘县| 武山县| 宜丰县| 柳州市| 东乡族自治县| 高雄市| 延川县| 石嘴山市| 甘谷县| 乐都县| 安岳县| 县级市| 山丹县| 隆昌县| 施秉县| 松溪县| 巍山| 蒲江县| 平阴县| 高雄市| 怀集县| 高淳县| 左贡县| 盱眙县| 楚雄市| 赣榆县| 方城县|