├── CustomAlertViewController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── sagarmane.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── sagarmane.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── CustomAlertViewController.xcscheme │ └── xcschememanagement.plist ├── CustomAlertViewController ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── mainUserAvtar.imageset │ │ ├── Contents.json │ │ ├── mainUserAvtar.png │ │ └── mainUserAvtar@2x.png │ └── userProfile.imageset │ │ ├── Contents.json │ │ ├── userProfile.png │ │ └── userProfile@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CustomAlertController │ ├── CustomAlertViewController.swift │ ├── HeaderCell.xib │ └── HeaderView.xib ├── Info.plist └── ViewController.swift └── README.md /CustomAlertViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomAlertViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CustomAlertViewController.xcodeproj/project.xcworkspace/xcuserdata/sagarmane.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController.xcodeproj/project.xcworkspace/xcuserdata/sagarmane.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CustomAlertViewController.xcodeproj/xcuserdata/sagarmane.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController.xcodeproj/xcuserdata/sagarmane.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CustomAlertViewController.xcodeproj/xcuserdata/sagarmane.xcuserdatad/xcschemes/CustomAlertViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController.xcodeproj/xcuserdata/sagarmane.xcuserdatad/xcschemes/CustomAlertViewController.xcscheme -------------------------------------------------------------------------------- /CustomAlertViewController.xcodeproj/xcuserdata/sagarmane.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController.xcodeproj/xcuserdata/sagarmane.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CustomAlertViewController/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/AppDelegate.swift -------------------------------------------------------------------------------- /CustomAlertViewController/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CustomAlertViewController/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CustomAlertViewController/Assets.xcassets/mainUserAvtar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Assets.xcassets/mainUserAvtar.imageset/Contents.json -------------------------------------------------------------------------------- /CustomAlertViewController/Assets.xcassets/mainUserAvtar.imageset/mainUserAvtar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Assets.xcassets/mainUserAvtar.imageset/mainUserAvtar.png -------------------------------------------------------------------------------- /CustomAlertViewController/Assets.xcassets/mainUserAvtar.imageset/mainUserAvtar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Assets.xcassets/mainUserAvtar.imageset/mainUserAvtar@2x.png -------------------------------------------------------------------------------- /CustomAlertViewController/Assets.xcassets/userProfile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Assets.xcassets/userProfile.imageset/Contents.json -------------------------------------------------------------------------------- /CustomAlertViewController/Assets.xcassets/userProfile.imageset/userProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Assets.xcassets/userProfile.imageset/userProfile.png -------------------------------------------------------------------------------- /CustomAlertViewController/Assets.xcassets/userProfile.imageset/userProfile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Assets.xcassets/userProfile.imageset/userProfile@2x.png -------------------------------------------------------------------------------- /CustomAlertViewController/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CustomAlertViewController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CustomAlertViewController/CustomAlertController/CustomAlertViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/CustomAlertController/CustomAlertViewController.swift -------------------------------------------------------------------------------- /CustomAlertViewController/CustomAlertController/HeaderCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/CustomAlertController/HeaderCell.xib -------------------------------------------------------------------------------- /CustomAlertViewController/CustomAlertController/HeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/CustomAlertController/HeaderView.xib -------------------------------------------------------------------------------- /CustomAlertViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/Info.plist -------------------------------------------------------------------------------- /CustomAlertViewController/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/CustomAlertViewController/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarmane19/CustomAlertViewController/HEAD/README.md --------------------------------------------------------------------------------