码迷,mamicode.com
首页 > 其他好文 > 详细

代理的实现

时间:2014-11-25 22:59:54      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   ar   color   os   sp   on   bs   ad   as   

#import <UIKit/UIKit.h>

@class ZBTabBar;

@protocol ZBTabBarDelegate <NSObject>

 

-(void)tabBar:(ZBTabBar *)tabBar didSelectButtonFrom:(int)from to:(int)to;

 

@end

 

@interface ZBTabBar : UIView

-(void)AddTabBarItemWithTabBarItem:(UITabBarItem *)item;

 

@property(nonatomic,weak)id<ZBTabBarDelegate> delegate;

 

@end

 

 

 

 

 

  if ( [self.delegate respondsToSelector:@selector(tabBar:didSelectButtonFrom:to:)]) {

        [self.delegate tabBar:self didSelectButtonFrom:self.tempButton.tag to:btn.tag];

    }

代理的实现

标签:style   ar   color   os   sp   on   bs   ad   as   

原文地址:http://www.cnblogs.com/zhibin/p/4121913.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!