美文网首页
iOS 无标题文章

iOS 无标题文章

作者: 夏天爱西瓜汁 | 来源:发表于2017-11-28 11:17 被阅读6次

    2016.7.27

    - (IBAction)assetClicked:(id)sender {

    if([self.delegaterespondsToSelector:@selector(lookAsset)]) {

    [self.delegatelookAsset];

    }

    }

    - (IBAction)incomeClicked:(id)sender {

    if([self.delegaterespondsToSelector:@selector(lookIncome)]) {

    [self.delegatelookIncome];

    }

    }

    @protocolMeHeaderDelegate

    - (void)lookAsset;

    - (void)lookIncome;

    @end

    @interfaceMeHeaderCell :UITableViewCell

    @property(weak,nonatomic)IBOutletUIButton*assetBtn;//总资产

    @property(weak,nonatomic)IBOutletUIButton*incomeBtn;//总收益

    @property(nonatomic,strong)id delegate;

    相关文章

      网友评论

          本文标题:iOS 无标题文章

          本文链接:https://www.haomeiwen.com/subject/qrbdbxtx.html