美文网首页
一些杂项

一些杂项

作者: lance017 | 来源:发表于2016-10-08 14:16 被阅读9次
    1.关于代理

    @required:必须实现的方法
    @optional:可选 实现的方法(可以全部都不实现)

    2.关于UITableView
    //不显示分割线
    _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    //点击无cell响应改变
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    
    3.Xcode打印
    //swift版
    public func DLog<T>(message: T, file: String = #file, method: String = #function, line: Int = #line) {
        #if DEBUG
            print("<\((file as NSString).lastPathComponent) : \(line)>, \(method)  \(message)")
        #endif
    }
    

    相关文章

      网友评论

          本文标题:一些杂项

          本文链接:https://www.haomeiwen.com/subject/qxmuyttx.html