Skip to content

UIImageView subclass which generates text as the placeholder for an ImageView, supports IBDesignable and code.

License

Notifications You must be signed in to change notification settings

carabina/ContactImageView

 
 

Repository files navigation

codebeat badge

ContactImageView


UIImageView subclass which generates text as the placeholder for an ImageView, supports IBDesignable and code.

Installation

CocoaPods comming soon

Manual

Drag ContactImageView.swift file to your project

Usage

Storyboard / IBDesignable

IBDesignable screenshot

Programmatic / Code

Option 1

let imageView = ContactImageView(frame: CGRect(x:10, y: 50, width: 100, height: 100))
imageView.setImageText(text: "George Kye", backgroundImage: UIImage(named: "bg"), username: true, textColor: UIColor.whiteColor(), fillColor: UIColor.blackColor(), circle: true) //backgroundImage is optional

Option 2

    let imageView2 = ContactImageView(frame: CGRect(x:130, y: 50, width: 100, height: 100))
    imageView2.text = "Joe Swanson" //Default = "GK"
    imageView2.username = true //Default = false (Returns initials of username if true)
    imageView2.textColor = UIColor.purpleColor() //Default = UIColor.whiteColor()
    imageView2.circle = false //Default = true
    imageView2.textFont = UIFont.italicSystemFontOfSize(30) //Default = UIFont.systemFontOfSize(22)
    imageView2.fontSize = 11 //Default = 22
    imageView2.fillColor = UIColor.greenColor() //Default = UIColor.lightGrayColor

Author

George Kye

License

ContactImageView is available under the MIT license. See the LICENSE file for more info.

TODO

  • CocoaPods
  • Add more tests

About

UIImageView subclass which generates text as the placeholder for an ImageView, supports IBDesignable and code.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Swift 87.8%
  • Ruby 12.2%