Swift common extensions in Xcode 8.3.2 CommonoCdeSwift have Classextensions and Extension. ClassExtension is use for StoryBoard And by Instance of class and Extensions is directly use by Class Name.
- UIImageViewExtension
- UIImageExtension
- UILabelExtension
- UIButtonExtension
- UICollectionViewExtension
- UITableViewExtension
- UITextFieldExtension
- UITextViewExtension
- UIViewExtension
- DateExtension (InProgress...)
- StringExtended (InProgress...)
- NSMutableAttribuedString
- AGDatePicker (Now it wanna be more updates...)
- UINaviagtionExtension (InProgress...) etc.(InProgress).
UIImageViewExtension use directly by storyboard and it have diffrent functionality like:
- Make circle
- Corner circle
- Directly make cirle
- Border width
- Border color
For Using This Class directly inherit it into storyboard UIImageView And Other extsions class also use as same:
UIImageExtension fetaures have:
let image = UIImage.init(named: "TestImage")
let compressImage = image?.compressImage(image: image!, targetSize: CGSize.init(width: 200, height: 200), compressionQuality: 0.50)
image?.fixOrientation()
UILabelExtesion features have:
- Corner radius
- Border width
- Border color
- Custom font
UIBUttonExtension features have:
- Add sublayer on button driectly by storyboard
- SublayerBorderWidth
- SublayerBorderColorSelected
- SublayerBorderColorNormal
- LeftSublayer
- RightSublayer
- BottomSublayer
- TopSublayer
- Corner Radius
- Directly make circle
- Border width
- Border color
- Shadow radius
- Shadow color
- CUston title font
UICollectionView Extension Have a single function which is use for get the cell identifier name, but condition is that class name and cell identifire name must be same.
- Syntax :- UICollectionViewCell.getCellIdentifier()
UITableVIew Extension also have a single function which is use for get the cell identifier name, but cell identifier name must be same as class name.
- Syntax :- UITableViewCell.getCellIdentifier()
UITextFieldExtension features have:
- PlaceHolder Color
- Border Width
- Border Color
- LeftPaddingWidth
- LeftPaddingViewImage
- LeftPaddingText
- RightPaddingViewImage
UITextViewExtension features have:
- Border Width
- Border Color
- Custom font
UIViewExtension features have:
- BorderWidth
- BorderColor
- CornerRadius
- MakeCircle
- AsPerWidthMakeCircle
For Navigation bar call this in app delegate and change according to you:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
self.window = UIWindow(frame:UIScreen.main.bounds)
self.window?.makeKeyAndVisible()
// Override point for customization after application launch.
configureViewController()
return true
}
func configureViewController() {
let storyBoard = UIStoryboard.init(name: "Main", bundle: nil)
let navigationController = storyBoard.instantiateViewController(withIdentifier: "controller") as! UINavigationController
navigationController.setupNavigationBarView()
let view = storyBoard.instantiateViewController(withIdentifier: "view") as! ViewController
navigationController.viewControllers.append(view)
window?.rootViewController = navigationController
}
For Configure the navigation bar in class:
func configureNaivationBar() {
navigationController?.setStatusBarHiddenStatus(isHidden: true, andNavigationBarHiddenStatus: false)
self.navigationController?.customDelegate = self
navigationController?.setupNavigationBar(navItem: navigationItem, title: "Testing", leftBarButtonType: .back, rightBarItemType: .threeIcon
, rightBarTitle: nil, arrRightBarImages: ["notifications", "notifications", "notifications"])
}
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.