在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):richzertuche/ZMaterialDesignUIButton开源软件地址(OpenSource Url):https://github.com/richzertuche/ZMaterialDesignUIButton开源编程语言(OpenSource Language):Swift 52.6%开源软件介绍(OpenSource Introduction):ZMaterialDesignUIButtonSwift and Objective-C Animated Material Design UIButtonThis Swift and Objective-C! UIButton was made inspired in Google new Material Design, and this GIF :] [![ZMaterialButton](http://img.youtube.com/vi/LApnUpnI094/0.jpg)](http://www.youtube.com/watch?v=LApnUpnI094) **You need to add the ZMaterialButtonDelegate to your Controller:** class ViewController: UIViewController, ZMaterialButtonDelegate {
} **To create a Material UIButton init it with frame and set the Zdelegate, a .endPoint (CGPoint) and a .changeToImage (UIImage)** ```swift let containerView = UIView(frame: CGRect(x: 0, y: 200, width: self.view.frame.size.width, height: self.view.frame.size.height-200)) containerView.clipsToBounds = true self.view.addSubview(containerView) Swiftself.button = ZMaterialButton(frame: CGRect(x: 10, y: 40, width: 100, height: 100)) self.button.setImage(UIImage(named: "play"), forState: UIControlState.Normal) self.button.backgroundColor = UIColor(red:0.05, green:0.69, blue:0.79, alpha:1) self.button.endPoint = CGPoint(x:self.view.center.x-50, y: self.view.center.y-50) self.button.changeToImage = UIImage(named: "pause") self.button.Zdelegate = self containerView.addSubview(self.button)
**Add the delegate function ZMaterialButtonDidExpand() to your controller to know when the button expanded or reduced.** ```swift func ZMaterialButtonDidExpand(button: ZMaterialButton, expanded: Bool){ if expanded == true { self.testButtonExpanded() UIView.animateWithDuration(0.1, delay: 0, options: .CurveEaseOut, animations: { self.fButton.alpha = 1 self.bButton.alpha = 1 }, completion:nil) } else { self.testButtonReduced() UIView.animateWithDuration(0.2, delay: 0, options: .CurveEaseOut, animations: { self.fButton.alpha = 0 self.bButton.alpha = 0 }, completion:nil) } } ``` Swift```obj-c - (void) ZMaterialButtonDidExpandButton:(ZMaterialButton *)button withSuccces:(BOOL)success{ if (success) { NSLog(@"Expanded"); } else { NSLog(@"Reduced"); } } ``` Obj-CHope you like it :]
Follow me on Twitter @richzertuche |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论