Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
ContactTableViewCell.h 618 Bytes
Copy Edit Raw Blame History
xiexiaolong.xxl authored 2024-06-18 15:06 . init
//
// ContactTableViewCell.h
// officeMobile
//
// Created by Points on 15-3-10.
// Copyright (c) 2015年 com.kinggrid. All rights reserved.
//
#import "ADTGropuInfo.h"
@protocol ContactTableViewCellDelegate <NSObject>
- (void)onSelected:(ADTGropuInfo *)info;
@end
#import <UIKit/UIKit.h>
@interface ContactTableViewCell : UITableViewCell
{
UIImageView *m_icon;
UILabel *m_nameLab;
UIView *sep;
UIButton *selectBtn;
}
@property (nonatomic,strong) id currentData;
@property (nonatomic,weak)id<ContactTableViewCellDelegate>m_delegate;
- (void)setCurrentData1:(ADTGropuInfo *)currentData;
@end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化