To run the example project, clone the repo, and run pod install
from the Example directory first.
for set UINavigationBar gradient and it's tintColor use the function below in viewDidLoad():
override func viewDidLoad() {
super.viewDidLoad()
SHNDNavigationBarGradient(firstColor: .darkGray,
secondColor: .white,
tintColor: .black,
isHorizontal: true)
}
For set UINavigationBarItem custom title view use the builder pattern below in viewDidLoad():
override func viewDidLoad() {
super.viewDidLoad()
let navTitleBuilder = NavigationTitleViewBuilder(title: "SHNDStuffs",
desc: "Custom Title View",
titleFont: UIFont(name: "Papyrus", size: 18)!,
descFont: UIFont(name: "Kailasa", size: 10)!,
titleTextColor: .purple,
descTextColor: .black)
SHNDNavigationCustomTitleView(builder: navTitleBuilder)
}
so simple, right?! ππ
if you wanna get an animation(shake, pulsate or flash) after you tapped the button :
@IBAction func buttonPressed(_ sender: SHNDButton) {
let animationElements = AnimationElements(duration: 0.1,
repeatCount: 3,
autoreverses: true,
animationMode: .shake)
sender.SHNDButtonAnimation(animationElements: animationElements)
}
Shimmer ,Shimmer ,Shimmer π, so simple and awesome as it should to be π:
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
let builderObject = ShimmerObject.init(text: "shndRS",
font: UIFont(name: "Papyrus", size: 73)!,
textAlignment: .center, animationDuration: 2,
frame: CGRect(x: 0, y: 0, width: view.frame.width, height: 400),
parentView: view,
mainLabelTextColor: .orange,
maskLabelTextColor: .purple)
SHNDShimmerFactory.create(builder: builderObject)
}
And this is how it looks:
For using SHNDView, SHNDButton, SHNDImageView just put one of these classes into subclass of your objects, and that's set... you have AWESOME features in your NavigationInspector
Have you ever seen Instagram login/sign up page Dynamic Gradient View? Well let me give you some good news, i've got something for you fellas here in SHNDStuffs that you can have that animation in your app, it's quite simple:
let object = SHNDDynamicGradientViewObject.init(colorArray: colorArray,
duration: 8,
shndView: gradientView)
SHNDDynamicGradientView(builder: object).animate()
ps: and colorArray is an array of UIColor tuple like this:
var colorArray:[(firstColor:UIColor, secondColor:UIColor)] = []
go and append whatever colors you want into it:
colorArray.append((firstColor: .purple, secondColor: .gray))
colorArray.append((firstColor: .red, secondColor: .blue))
colorArray.append((firstColor: .orange, secondColor: .brown))
and now you have it π
iOS 9.0+
Xcode 10.0
Swift 4.0 or later
SHNDStuffs is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'SHNDStuffs'
sahandraeisi1994@gmail.com, sahandraeisi@yahoo.com
SHNDStuffs is available under the MIT license. See the LICENSE file for more info.