iOS --- 总结Swift中常用的全局函数和extension(持续更新中)

将iOS开发中常用的Swift全局函数和extension(因Swift中不能使用宏定义)整理如下。
而对于Objective-C,其宏定义总结请参考博客iOS — 总结Objective-C中常用的宏定义(持续更新中)

//
//  Global.swift
//
//  useful global methods and extension for Chris Hu
//

import Foundation

func isIPhone4() -> Bool {
    return UIScreen.mainScreen().currentMode?.size == CGSizeMake(640, 960)
}
func isIPhone5() -> Bool {
    return UIScreen.mainScreen().currentMode?.size == CGSizeMake(640, 1136)
}
func isIPhone6() -> Bool {
    return UIScreen.mainScreen().currentMode?.size == CGSizeMake(750, 1334)
}
func isIPhone6Plus() -> Bool {
    return UIScreen.mainScreen().currentMode?.size == CGSizeMake(1242, 2208)
}
func isIPhone6PlusBigMode() -> Bool {
    return UIScreen.mainScreen().currentMode?.size == CGSizeMake(1125, 2001)
}


func currentLanguage() -> String {
    return NSLocale.preferredLanguages().first!
}

func systemVersion() -> String {
    return UIDevice.currentDevice().systemVersion
}

func appVersion() -> String {
    return String(NSBundle.mainBundle().infoDictionary!["CFBundleShortVersionString"]!)
}


extension UIColor {
    public convenience init(hexString: UInt32, alpha: CGFloat = 1.0) {
        let red     = CGFloat((hexString & 0xFF0000) >> 16) / 255.0
        let green   = CGFloat((hexString & 0x00FF00) >> 8 ) / 255.0
        let blue    = CGFloat((hexString & 0x0000FF)      ) / 255.0
        self.init(red: red, green: green, blue: blue, alpha: alpha)
    }
}

extension UITableViewDataSource {
    // return total rows in the tableView
    func totalRows(tableView: UITableView) -> Int {
        let totalSections = self.numberOfSectionsInTableView!(tableView) ?? 1
        var section = 0, total = 0
        while section < totalSections {
            total += self.tableView(tableView, numberOfRowsInSection: section)
            section++
        }
        return total
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值