├── .gitignore ├── .swift-version ├── .travis.yml ├── AvatarImageView.podspec ├── AvatarImageView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── AvatarImageView.xcscheme ├── AvatarImageView ├── AvatarImageView.h ├── AvatarImageView.swift ├── AvatarImageViewConfiguration.swift ├── ColorCache.swift └── Info.plist ├── AvatarImageViewTests ├── AvatarImageViewConfigurationTests.swift ├── AvatarImageViewTests.swift ├── Info.plist ├── SaveImageUtility.swift ├── TestAssets.xcassets │ ├── Contents.json │ ├── custom_font_circle.imageset │ │ ├── Contents.json │ │ ├── custom_font_circle@2x.png │ │ └── custom_font_circle@3x.png │ ├── custom_font_mask.imageset │ │ ├── Contents.json │ │ ├── custom_font_mask@2x.png │ │ └── custom_font_mask@3x.png │ ├── custom_font_square.imageset │ │ ├── Contents.json │ │ ├── custom_font_square@2x.png │ │ └── custom_font_square@3x.png │ ├── default_circle.imageset │ │ ├── Contents.json │ │ ├── default_circle@2x.png │ │ └── default_circle@3x.png │ ├── default_mask.imageset │ │ ├── Contents.json │ │ ├── default_mask@2x.png │ │ └── default_mask@3x.png │ ├── default_square.imageset │ │ ├── Contents.json │ │ ├── default_square@2x.png │ │ └── default_square@3x.png │ ├── hexagon.imageset │ │ ├── Contents.json │ │ └── hexagon@3x.png │ ├── initials_circle.imageset │ │ ├── Contents.json │ │ ├── initials_circle@2x.png │ │ └── initials_circle@3x.png │ ├── initials_circle_blue.imageset │ │ ├── Contents.json │ │ ├── initials_circle_blue@2x.png │ │ └── initials_circle_blue@3x.png │ ├── initials_mask.imageset │ │ ├── Contents.json │ │ ├── initials_mask@2x.png │ │ └── initials_mask@3x.png │ ├── initials_mask_blue.imageset │ │ ├── Contents.json │ │ ├── initials_mask_blue@2x.png │ │ └── initials_mask_blue@3x.png │ ├── initials_random_color.imageset │ │ ├── Contents.json │ │ ├── initials_random_color@2x.png │ │ └── initials_random_color@3x.png │ ├── initials_square.imageset │ │ ├── Contents.json │ │ ├── initials_square@2x.png │ │ └── initials_square@3x.png │ ├── initials_square_blue.imageset │ │ ├── Contents.json │ │ ├── initials_square_blue@2x.png │ │ └── initials_square_blue@3x.png │ ├── invalid_font_square.imageset │ │ ├── Contents.json │ │ ├── invalid_font_square@2x.png │ │ └── invalid_font_square@3x.png │ ├── profile_pic.imageset │ │ ├── Contents.json │ │ └── profile_pic@3x.png │ └── profile_pic_hexagon.imageset │ │ ├── Contents.json │ │ ├── profile_pic_hexagon@2x.png │ │ └── profile_pic_hexagon@3x.png ├── TestData.swift └── UIImage+TestUtils.swift ├── Example Project ├── AvatarImageViewExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── AvatarImageViewExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AvatarImageViewExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── hexagon.imageset │ │ │ ├── Contents.json │ │ │ └── hexagon@3x.png │ │ └── profile_pic.imageset │ │ │ ├── Contents.json │ │ │ └── profile_pic@3x.png │ ├── AvatarImageExampleData.swift │ ├── AvatarTableViewCell.swift │ ├── AvatarTableViewController.swift │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── SingleAvatarViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── AvatarImageView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── AvatarImageView │ ├── AvatarImageView-dummy.m │ ├── AvatarImageView-prefix.pch │ ├── AvatarImageView-umbrella.h │ ├── AvatarImageView.modulemap │ ├── AvatarImageView.xcconfig │ └── Info.plist │ └── Pods-AvatarImageViewExample │ ├── Info.plist │ ├── Pods-AvatarImageViewExample-acknowledgements.markdown │ ├── Pods-AvatarImageViewExample-acknowledgements.plist │ ├── Pods-AvatarImageViewExample-dummy.m │ ├── Pods-AvatarImageViewExample-frameworks.sh │ ├── Pods-AvatarImageViewExample-resources.sh │ ├── Pods-AvatarImageViewExample-umbrella.h │ ├── Pods-AvatarImageViewExample.debug.xcconfig │ ├── Pods-AvatarImageViewExample.modulemap │ └── Pods-AvatarImageViewExample.release.xcconfig ├── LICENSE.md ├── README.md └── Screenshots ├── circle_custom_font.png ├── circle_initials.png ├── circle_profile_pic.png ├── mask_initials.png ├── square_initials.png └── table_view.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/.travis.yml -------------------------------------------------------------------------------- /AvatarImageView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageView.podspec -------------------------------------------------------------------------------- /AvatarImageView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AvatarImageView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AvatarImageView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AvatarImageView.xcodeproj/xcshareddata/xcschemes/AvatarImageView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageView.xcodeproj/xcshareddata/xcschemes/AvatarImageView.xcscheme -------------------------------------------------------------------------------- /AvatarImageView/AvatarImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageView/AvatarImageView.h -------------------------------------------------------------------------------- /AvatarImageView/AvatarImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageView/AvatarImageView.swift -------------------------------------------------------------------------------- /AvatarImageView/AvatarImageViewConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageView/AvatarImageViewConfiguration.swift -------------------------------------------------------------------------------- /AvatarImageView/ColorCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageView/ColorCache.swift -------------------------------------------------------------------------------- /AvatarImageView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageView/Info.plist -------------------------------------------------------------------------------- /AvatarImageViewTests/AvatarImageViewConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/AvatarImageViewConfigurationTests.swift -------------------------------------------------------------------------------- /AvatarImageViewTests/AvatarImageViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/AvatarImageViewTests.swift -------------------------------------------------------------------------------- /AvatarImageViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/Info.plist -------------------------------------------------------------------------------- /AvatarImageViewTests/SaveImageUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/SaveImageUtility.swift -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/custom_font_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/custom_font_circle.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/custom_font_circle.imageset/custom_font_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/custom_font_circle.imageset/custom_font_circle@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/custom_font_circle.imageset/custom_font_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/custom_font_circle.imageset/custom_font_circle@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/custom_font_mask.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/custom_font_mask.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/custom_font_mask.imageset/custom_font_mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/custom_font_mask.imageset/custom_font_mask@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/custom_font_mask.imageset/custom_font_mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/custom_font_mask.imageset/custom_font_mask@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/custom_font_square.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/custom_font_square.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/custom_font_square.imageset/custom_font_square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/custom_font_square.imageset/custom_font_square@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/custom_font_square.imageset/custom_font_square@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/custom_font_square.imageset/custom_font_square@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/default_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/default_circle.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/default_circle.imageset/default_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/default_circle.imageset/default_circle@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/default_circle.imageset/default_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/default_circle.imageset/default_circle@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/default_mask.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/default_mask.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/default_mask.imageset/default_mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/default_mask.imageset/default_mask@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/default_mask.imageset/default_mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/default_mask.imageset/default_mask@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/default_square.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/default_square.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/default_square.imageset/default_square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/default_square.imageset/default_square@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/default_square.imageset/default_square@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/default_square.imageset/default_square@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/hexagon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/hexagon.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/hexagon.imageset/hexagon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/hexagon.imageset/hexagon@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_circle.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_circle.imageset/initials_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_circle.imageset/initials_circle@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_circle.imageset/initials_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_circle.imageset/initials_circle@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_circle_blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_circle_blue.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_circle_blue.imageset/initials_circle_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_circle_blue.imageset/initials_circle_blue@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_circle_blue.imageset/initials_circle_blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_circle_blue.imageset/initials_circle_blue@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_mask.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_mask.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_mask.imageset/initials_mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_mask.imageset/initials_mask@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_mask.imageset/initials_mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_mask.imageset/initials_mask@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_mask_blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_mask_blue.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_mask_blue.imageset/initials_mask_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_mask_blue.imageset/initials_mask_blue@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_mask_blue.imageset/initials_mask_blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_mask_blue.imageset/initials_mask_blue@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_random_color.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_random_color.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_random_color.imageset/initials_random_color@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_random_color.imageset/initials_random_color@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_random_color.imageset/initials_random_color@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_random_color.imageset/initials_random_color@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_square.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_square.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_square.imageset/initials_square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_square.imageset/initials_square@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_square.imageset/initials_square@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_square.imageset/initials_square@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_square_blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_square_blue.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_square_blue.imageset/initials_square_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_square_blue.imageset/initials_square_blue@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/initials_square_blue.imageset/initials_square_blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/initials_square_blue.imageset/initials_square_blue@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/invalid_font_square.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/invalid_font_square.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/invalid_font_square.imageset/invalid_font_square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/invalid_font_square.imageset/invalid_font_square@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/invalid_font_square.imageset/invalid_font_square@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/invalid_font_square.imageset/invalid_font_square@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/profile_pic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/profile_pic.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/profile_pic.imageset/profile_pic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/profile_pic.imageset/profile_pic@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/profile_pic_hexagon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/profile_pic_hexagon.imageset/Contents.json -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/profile_pic_hexagon.imageset/profile_pic_hexagon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/profile_pic_hexagon.imageset/profile_pic_hexagon@2x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestAssets.xcassets/profile_pic_hexagon.imageset/profile_pic_hexagon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestAssets.xcassets/profile_pic_hexagon.imageset/profile_pic_hexagon@3x.png -------------------------------------------------------------------------------- /AvatarImageViewTests/TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/TestData.swift -------------------------------------------------------------------------------- /AvatarImageViewTests/UIImage+TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/AvatarImageViewTests/UIImage+TestUtils.swift -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/Assets.xcassets/hexagon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/Assets.xcassets/hexagon.imageset/Contents.json -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/Assets.xcassets/hexagon.imageset/hexagon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/Assets.xcassets/hexagon.imageset/hexagon@3x.png -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/Assets.xcassets/profile_pic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/Assets.xcassets/profile_pic.imageset/Contents.json -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/Assets.xcassets/profile_pic.imageset/profile_pic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/Assets.xcassets/profile_pic.imageset/profile_pic@3x.png -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/AvatarImageExampleData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/AvatarImageExampleData.swift -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/AvatarTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/AvatarTableViewCell.swift -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/AvatarTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/AvatarTableViewController.swift -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/Info.plist -------------------------------------------------------------------------------- /Example Project/AvatarImageViewExample/SingleAvatarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/AvatarImageViewExample/SingleAvatarViewController.swift -------------------------------------------------------------------------------- /Example Project/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Podfile -------------------------------------------------------------------------------- /Example Project/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Podfile.lock -------------------------------------------------------------------------------- /Example Project/Pods/Local Podspecs/AvatarImageView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Local Podspecs/AvatarImageView.podspec.json -------------------------------------------------------------------------------- /Example Project/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example Project/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/AvatarImageView/AvatarImageView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/AvatarImageView/AvatarImageView-dummy.m -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/AvatarImageView/AvatarImageView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/AvatarImageView/AvatarImageView-prefix.pch -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/AvatarImageView/AvatarImageView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/AvatarImageView/AvatarImageView-umbrella.h -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/AvatarImageView/AvatarImageView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/AvatarImageView/AvatarImageView.modulemap -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/AvatarImageView/AvatarImageView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/AvatarImageView/AvatarImageView.xcconfig -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/AvatarImageView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/AvatarImageView/Info.plist -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Info.plist -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-acknowledgements.markdown -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-acknowledgements.plist -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-dummy.m -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-frameworks.sh -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-resources.sh -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample-umbrella.h -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample.debug.xcconfig -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample.modulemap -------------------------------------------------------------------------------- /Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Example Project/Pods/Target Support Files/Pods-AvatarImageViewExample/Pods-AvatarImageViewExample.release.xcconfig -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/circle_custom_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Screenshots/circle_custom_font.png -------------------------------------------------------------------------------- /Screenshots/circle_initials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Screenshots/circle_initials.png -------------------------------------------------------------------------------- /Screenshots/circle_profile_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Screenshots/circle_profile_pic.png -------------------------------------------------------------------------------- /Screenshots/mask_initials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Screenshots/mask_initials.png -------------------------------------------------------------------------------- /Screenshots/square_initials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Screenshots/square_initials.png -------------------------------------------------------------------------------- /Screenshots/table_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushn21/AvatarImageView/HEAD/Screenshots/table_view.png --------------------------------------------------------------------------------