美文网首页
首页-- EliteSchoolTableViewCell

首页-- EliteSchoolTableViewCell

作者: 云兮77 | 来源:发表于2018-01-31 14:14 被阅读0次

    #import

    @interface  EliteSchoolTableViewCell : UITableViewCell

    @end

    #import "EliteSchoolTableViewCell.h"

    @implementationEliteSchoolTableViewCell

    - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString*)reuseIdentifier

    {

        self= [superinitWithStyle:stylereuseIdentifier:reuseIdentifier];

        if(self) {

            self.selectionStyle = UITableViewCellSelectionStyleNone;

            UIScreen* mainScreen = [UIScreenmainScreen];

            CGFloatwidth = mainScreen.bounds.size.width/4;

            CGFloatheight =70;

            UIImage* eliteScloolImage = [UIImageimageNamed:@""];

            UIButton* eliteScloolBtn = [[UIButtonalloc]initWithFrame:CGRectMake(width*0,10, width, height)];

            [eliteScloolBtnsetImage:eliteScloolImageforState:UIControlStateNormal];

            [eliteScloolBtnaddTarget:self action:@selector(showEliteSchoolAction:) forControlEvents:UIControlEventTouchUpInside];

            [self.contentViewaddSubview:eliteScloolBtn];

            CGRecteliteSchoolLabelFrame =CGRectMake(0,CGRectGetHeight(eliteScloolBtn.frame), width,15);

            UILabel* eliteSchoolLabel = [[UILabelalloc]initWithFrame:eliteSchoolLabelFrame];

            eliteSchoolLabel.textColor= [UIColorlightGrayColor];

            eliteSchoolLabel.textAlignment=NSTextAlignmentCenter;

            eliteSchoolLabel.font= [UIFontsystemFontOfSize:12];

            eliteSchoolLabel.text=@"第一中学";

            eliteSchoolLabel.numberOfLines=0;

            [eliteScloolBtnaddSubview:eliteSchoolLabel];

        }

        return self;

    }

    - (void)showEliteSchoolAction:(UIButton*)btn

    {

        NSLog(@"名校风采");

    }

    @end

    相关文章

      网友评论

          本文标题:首页-- EliteSchoolTableViewCell

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