LetsPod 5.0

LetsPod 5.0

TestsTested
LangLanguage SwiftSwift
License Custom
ReleasedLast Release Jun 2019
SPMSupports SPM

Maintained by Lokesh Dudhat, Pratik Patel.



LetsNurture's Pod

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

iOS 8

Installation

LetsPod is available through CocoaPods. To install

$ sudo gem install cocoapods

it, simply add the following line to your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
pod "LetsPod"

Features

Values

  • [ ] Not Inspectable
  • [x] Inspectable

LetsButton (IBDesignable)

  • [ ] topBorderView: UIView
  • [ ] bottomBorderView: UIView
  • [ ] leftBorderView: UIView
  • [ ] rightBorderView: UIView
  • [x] isRightImage : Bool
  • [x] highlightedImage : UIImage
  • [x] normalImage: UIImage
  • [x] normalTextColor : UIColor
  • [x] highlightedTextColor : UIColor
  • [x] highlightedBackgroundColor: UIColor
  • [x] normalBackgroundColor: UIColor
  • [x] borderColor: UIColor
  • [x] borderWidth: CGFloat
  • [x] cornerRadius : CGFloat
  • [x] isCircle: Bool
  • [x] topBorderColor : UIColor
  • [x] topBorderHeight : CGFloat
  • [x] bottomBorderColor : UIColor
  • [x] bottomBorderHeight : CGFloat
  • [x] leftBorderColor : UIColor
  • [x] leftBorderHeight : CGFloat
  • [x] rightBorderColor : UIColor
  • [x] rightBorderHeight : CGFloat

LetsImageView (IBDesignable)

  • [ ] topBorder: UIView
  • [ ] bottomBorder: UIView
  • [ ] leftBorder: UIView
  • [ ] rightBorder: UIView
  • [x] borderColor: UIColor
  • [x] borderWidth: CGFloat
  • [x] cornerRadius: CGFloat
  • [x] topBorderColor : UIColor
  • [x] topBorderHeight : CGFloat
  • [x] bottomBorderColor : UIColor
  • [x] bottomBorderHeight : CGFloat
  • [x] leftBorderColor : UIColor
  • [x] leftBorderHeight : CGFloat
  • [x] rightBorderColor : UIColor
  • [x] rightBorderHeight : CGFloat

LetsLabel (IBDesignable)

  • [ ] topBorder: UIView
  • [ ] bottomBorder: UIView
  • [ ] leftBorder: UIView
  • [ ] rightBorder: UIView
  • [x] borderColor: UIColor
  • [x] borderWidth: CGFloat
  • [x] isCircle: Bool
  • [x] cornerRadius: CGFloat
  • [x] fitToWidth: Bool
  • [x] paddingLeft: CGFloat
  • [x] topBorderColor : UIColor
  • [x] topBorderHeight : CGFloat
  • [x] bottomBorderColor : UIColor
  • [x] bottomBorderHeight : CGFloat
  • [x] leftBorderColor : UIColor
  • [x] leftBorderHeight : CGFloat
  • [x] rightBorderColor : UIColor
  • [x] rightBorderHeight : CGFloat

LetsTextField (IBDesignable)

  • [ ] topBorder: UIView
  • [ ] bottomBorder: UIView
  • [ ] leftBorder: UIView
  • [ ] rightBorder: UIView
  • [ ] leftimageview : UIImageView
  • [ ] rightimageview : UIImageView
  • [x] rightImage : UIImage
  • [x] rightviewWidth : CGFloat
  • [x] borderColor: UIColor
  • [x] borderWidth: CGFloat
  • [x] cornerRadius: CGFloat
  • [x] placeHolderColor : UIColor
  • [x] leftImage : UIImage
  • [x] leftviewWidth : CGFloat
  • [x] paddingLeft: CGFloat
  • [x] paddingRight: CGFloat
  • [x] topBorderColor : UIColor
  • [x] topBorderHeight : CGFloat
  • [x] bottomBorderColor : UIColor
  • [x] bottomBorderHeight : CGFloat
  • [x] leftBorderColor : UIColor
  • [x] leftBorderHeight : CGFloat
  • [x] rightBorderColor : UIColor
  • [x] rightBorderHeight : CGFloat

LetsTextView (IBDesignable)

  • [x] placeholderLabel: UILabel
  • [x] placeholderColor : UIColor
  • [x] placeholder : String

LetsView (IBDesignable)

  • [x] topBorder: UIView
  • [x] bottomBorder: UIView
  • [x] leftBorder: UIView
  • [x] rightBorder: UIView
  • [x] borderColor: UIColor
  • [x] borderWidth: CGFloat
  • [x] cornerRadius: CGFloat
  • [x] topBorderColor : UIColor
  • [x] topBorderHeight : CGFloat
  • [x] bottomBorderColor : UIColor
  • [x] bottomBorderHeight : CGFloat
  • [x] leftBorderColor : UIColor
  • [x] leftBorderHeight : CGFloat
  • [x] rightBorderColor : UIColor
  • [x] rightBorderHeight : CGFloat

NSDate (Extension)

  • [ ] day: UInt
  • [ ] month: UInt
  • [ ] year: UInt
  • [ ] hour: UInt
  • [ ] minute: UInt
  • [ ] second: UInt
  • [ ] public func isGreaterThan(date: NSDate) -> Bool
  • [ ] public func isLessThan(date: NSDate) -> Bool
  • [ ] public func plusSeconds(s: UInt) -> NSDate
  • [ ] public func minusSeconds(s: UInt) -> NSDate
  • [ ] public func plusMinutes(m: UInt) -> NSDate
  • [ ] public func minusMinutes(m: UInt) -> NSDate
  • [ ] public func plusHours(h: UInt) -> NSDate
  • [ ] public func minusHours(h: UInt) -> NSDate
  • [ ] public func plusDays(d: UInt) -> NSDate
  • [ ] public func minusDays(d: UInt) -> NSDate
  • [ ] public func plusWeeks(w: UInt) -> NSDate
  • [ ] public func minusWeeks(w: UInt) -> NSDate
  • [ ] public func plusMonths(m: UInt) -> NSDate
  • [ ] public func minusMonths(m: UInt) -> NSDate
  • [ ] public func plusYears(y: UInt) -> NSDate
  • [ ] public func minusYears(y: UInt) -> NSDate
  • [ ] public func midnightUTCDate() -> NSDate
  • [ ] public class func secondsBetween(date1 d1:NSDate, date2 d2:NSDate) -> Int
  • [ ] public class func minutesBetween(date1 d1: NSDate, date2 d2: NSDate) -> Int
  • [ ] public class func hoursBetween(date1 d1: NSDate, date2 d2: NSDate) -> Int
  • [ ] public class func daysBetween(date1 d1: NSDate, date2 d2: NSDate) -> Int
  • [ ] public class func weeksBetween(date1 d1: NSDate, date2 d2: NSDate) -> Int
  • [ ] public class func monthsBetween(date1 d1: NSDate, date2 d2: NSDate) -> Int
  • [ ] public class func yearsBetween(date1 d1: NSDate, date2 d2: NSDate) -> Int

UISearchBar (Extension)

  • [ ] func radiusRemove()

UIImage (Extension)

  • [ ] getPixelColor(pos: CGPoint) -> UIColor

UIToolbar (Extension)

  • [ ] showHairline()
  • [ ] hideHairline()

UINavigationBar (Extension)

  • [ ] showBottomHairline()
  • [ ] hideBottomHairline()

String (Extension)

  • [ ] length : Int
  • [ ] ns: NSString
  • [ ] pathExtension: String
  • [ ] lastPathComponent: String

UIViewController (Extension)

  • [ ] Table separator remove automatically

LetsPod for the LN Team.