首页 > 代码库 > DCPathButtonDemo(按钮的动画效果)
DCPathButtonDemo(按钮的动画效果)
开始效果图:
点击button后效果图:
工程目录:
工程详细目录:
RootViewController.h
#import <UIKit/UIKit.h>//加入头文件#import "DCPathButton.h"@interface RootViewController : UIViewController<DCPathButtonDelegate>@end
RootViewController.m
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.view.frame = CGRectMake(0, 0, 320, 460); self.view.backgroundColor = [UIColor whiteColor]; DCPathButton *dcPathButton = [[DCPathButton alloc] initDCPathButtonWithSubButtons:6 totalRadius:60 centerRadius:15 subRadius:15 centerImage:@"custom_center" centerBackground:nil subImages:^(DCPathButton *dc){ [dc subButtonImage:@"custom_1" withTag:0]; [dc subButtonImage:@"custom_2" withTag:1]; [dc subButtonImage:@"custom_3" withTag:2]; [dc subButtonImage:@"custom_4" withTag:3]; [dc subButtonImage:@"custom_5" withTag:4]; [dc subButtonImage:@"custom_1" withTag:5]; } subImageBackground:nil inLocationX:0 locationY:0 toParentView:self.view]; dcPathButton.delegate = self;}#pragma mark - DCPathButton delegate- (void)button_0_action{ NSLog(@"Button Press Tag 0!!");}- (void)button_1_action{ NSLog(@"Button Press Tag 1!!");}- (void)button_2_action{ NSLog(@"Button Press Tag 2!!");}- (void)button_3_action{ NSLog(@"Button Press Tag 3!!");}- (void)button_4_action{ NSLog(@"Button Press Tag 4!!");}- (void)button_5_action{ NSLog(@"Button Press Tag 5!!");}
DCPathButtonDemo(按钮的动画效果)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。