Xcode创建代码块

2017-06-10  本文已影响40人  StoneWing

在日常的开发中,我们总是会想方设法的来使开发更加的便捷和顺手,而Xcode提供的代码块创建的功能,使我们开发程序更能适应自己的习惯。下面通过一个简单的例子来说明一下代码块的创建:

比如我们使用tableView的时候,我们需要遵循delegate和dataSource协议,虽然Xcode中,已经有了一些简化开发的代码块,我们可以根据自己的需要再创建一个:

    func numberOfSections(in tableView: UITableView) -> Int {
        
    }
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        
    }
    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        
    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        
    }
    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
       
    }
创建.png 属性设置.png 使用.png
let <#contant#> = <#class#>.then {
    
        $0.<#property#> = .<#value#>
    }

以上就是如何创建代码块,代码块的创建,是我们写代码更加的便捷

上一篇下一篇

猜你喜欢

热点阅读