• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Swift3.0创建工程常用的类、三方、以及扩展1.5

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

搭建项目常用的方法属性,欢迎追加

三方:

 

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, ‘8.0’
use_frameworks!

target 'swift' do 
pod 'SwiftyJSON', '~> 3.0'
pod 'MJExtension', '~> 3.0.13'
pod 'MBProgressHUD', '~> 1.0.0'
pod 'AFNetworking', '~> 3.1.0'
pod 'SDWebImage', '~> 3.8.2'
pod 'XMLReader', '~> 0.0.2'
pod 'GDataXML-HTML', '~> 1.3.0'
pod 'Reachability', '~> 3.2'
pod 'FMDB', '~> 2.6.2'
pod 'SDAutoLayout'
pod 'Alamofire', '~> 4’



end
View Code

 

 

 

扩展:

 

1、MBProgressHUD-Extension  http://pan.baidu.com/s/1jIpAngM

2、ToolExtension: 用十六进制颜色创建UIColor

extension UIColor {
    
    static func Xrgb(_ r: CGFloat, _ g: CGFloat, _ b: CGFloat) -> UIColor {
        return UIColor.init(red: r / 255,
                            green: g / 255,
                            blue: b / 255,
                            alpha: 1.0)
    }
    
    static func XcolorFromHex(_ Hex: UInt32) -> UIColor {
        return UIColor.init(red: CGFloat((Hex & 0xFF0000) >> 16) / 255.0,
                            green: CGFloat((Hex & 0xFF00) >> 8) / 255.0,
                            blue: CGFloat((Hex & 0xFF)) / 255.0,
                            alpha: 1.0)
    }
    
}

 

 

 

使用方法:

  let heigth = XiPhoneHeight(height: 80)

  let image = XImageName(name: "iamge")

 

SwiftPCH.swift

//适配高 宽
func XiPhoneHeight(height:CGFloat) -> CGFloat {
    
    return UIScreen.main.bounds.size.height * (height / 1334.0)
    
}


func XiPhoneWidth(width:CGFloat) -> CGFloat {
    
    return UIScreen.main.bounds.size.width * (width / 750.0)
    
}

// 获取屏幕的 高宽
func XScreeWidth() -> CGFloat {
    
    return UIScreen.main.bounds.size.width
}

func XScreenHeight() -> CGFloat {
    
    return UIScreen.main.bounds.size.height
}



//系统相关


//系统iOS版本
func XiOSVersion() -> String {
    
    return UIDevice.current.systemVersion
    
    
}

//判断系统版本是不是。。。
func XiOSVersionOfString(string:String) -> Bool {
    
    if string.compare(UIDevice.current.systemVersion as String).rawValue == 0 {
        return true
    }else{
        
        return false
    }
    
    
}

//model
func XiOSVersionModel() -> String {
    return UIDevice.current.model
}


// 需要给 地位 添加系统文件 不需要请注掉
//定位


//    let locationManager = CLLocationManager()
//    var currentLocation:CLLocation
//    var  lock = NSLock()

//    locationManager.delegate = self
//    locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters
//    locationManager.distanceFilter = 50
//    locationManager.requestAlwaysAuthorization()
//
//
//
//    //委托传回定位,获取最后一个
//    func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
//        lock.lock()
//        currentLocation = locations.last    //注意:获取集合中最后一个位置
//        print("定位经纬度为:\(currentLocation.coordinate.latitude)")
//        //一直发生定位错误输出结果为0:原因是我输出的是currentLocation.altitude(表示高度的)而不是currentLoction.coordinate.latitude(这个才是纬度)
//        print(currentLocation.coordinate.longitude)
//        lock.unlock()
//
//    }
//    func locationManager(manager: CLLocationManager, didFailWithError error: NSError) {
//        print("定位出错拉!!\(error)")
//    }
//
//




//属性方法

//颜色
//backgroundcolor
func XbackgroundColor() -> UIColor {
    
    return UIColor.Xrgb(230, 230, 230)
}

func XClearColor() -> UIColor {
    return UIColor.clear
}

func XWhiteColor() -> UIColor {
    return UIColor.white
}



//图片相关

//获取本地图片
//    func ImageName(name:String) -> UIImage {
//        return UIImage(named: name) as! String
//    }

func XImageData(data:Data) -> UIImage {
    return UIImage(data: data)!
}


//需要给Md5 创建桥接文件,不需要此方法 请注掉
//数据处理
func Xmd5String(str:String) -> String{
    let cStr = str.cString(using: String.Encoding.utf8);
    let buffer = UnsafeMutablePointer<UInt8>.allocate(capacity: 16)
    CC_MD5(cStr!,(CC_LONG)(strlen(cStr!)), buffer)
    let md5String = NSMutableString();
    for i in 0 ..< 16{
        md5String.appendFormat("%02x", buffer[i])
    }
    free(buffer)
    return md5String as String
}








//UI布局 label button

//Label frame:上左 宽高
func XlabelFrame(x:CGFloat,y:CGFloat,width:CGFloat,height:CGFloat,text:String,textcolor:UIColor,font:CGFloat,backgroundColor:UIColor) -> UILabel {
    
    let label = UILabel(frame: CGRect(x: x, y:y, width: width, height:height))
    label.text = text
    label.textColor = textcolor
    label.font = UIFont.systemFont(ofSize: font)
    label.backgroundColor = backgroundColor
    
    
    return label
}


//无frame
func Xlabel(text:String,textcolor:UIColor,font:CGFloat,backgroundColor:UIColor) -> UILabel {
    
    let label = UILabel()
    label.text = text
    label.textColor = textcolor
    label.font = UIFont.systemFont(ofSize: font)
    label.backgroundColor = backgroundColor
    
    
    return label
}



//UIbutton
func XbuttonFrame(x:CGFloat,y:CGFloat,width:CGFloat,height:CGFloat,text:String,textcolor:UIColor,font:CGFloat,backgroundColor:UIColor,cornerRadius:CGFloat) -> UIButton {
    
    let button = UIButton(frame: CGRect(x: x, y:y, width: width, height:height))
    button.setTitle(text, for: .normal)
    button.setTitleColor(textcolor, for: .normal)
    button.titleLabel?.font = UIFont.systemFont(ofSize: font)
    if cornerRadius>0 {
        button.backgroundColor = backgroundColor
        button.layer.cornerRadius = cornerRadius
    }
    
    button.layer.masksToBounds = true
    
    
    return button
}

//UIImageview
func XimageViewFrame(x:CGFloat,y:CGFloat,width:CGFloat,height:CGFloat,name:String,backgroundColor:UIColor,cornerRadiu:CGFloat) -> UIImageView {
    
    let imageView = UIImageView(frame: CGRect(x: x, y:y, width: width, height:height))
    imageView.image = UIImage(named:name)
    imageView.backgroundColor = backgroundColor
    if cornerRadiu>0 {
        imageView.layer.cornerRadius = cornerRadiu
        imageView.layer.masksToBounds = true
    }
    
    imageView.contentMode = .scaleAspectFit //保持比例
    
    
    return imageView
}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
[Swift]LeetCode77.组合|Combinations发布时间:2022-07-13
下一篇:
Swift 学习- 04 -- 字符串和字符发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap