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

自定义cell

时间:2015-10-15 23:44:51      阅读:410      评论:0      收藏:0      [点我收藏+]

标签:

//

//  TableViewCell.m

//  TableView

//

//  Created by Bruce on 15/8/25.

//  Copyright (c) 2015年 Bruce. All rights reserved.

//

 

#import "TableViewCell.h"

#import "Canvas.h"

 

@implementation TableViewCell

 

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

{

    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];

    if (self) {

        CSAnimationView *animationView = [[CSAnimationView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];

        

        animationView.backgroundColor = [UIColor whiteColor];

        

        animationView.duration = 0.5;

        animationView.delay    = 0;

        animationView.type     = CSAnimationTypeShake;

        

        [self.contentView addSubview:animationView];

        

        

        UIView *view =  [[UIView alloc]initWithFrame:CGRectMake(10, 0, 40, 40)];

        view.backgroundColor = [UIColor brownColor];

        [animationView addSubview:view];

        [animationView startCanvasAnimation];

    }

    return self;

}

- (void)awakeFromNib {

    // Initialization code

}

 

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {

    [super setSelected:selected animated:animated];

 

    // Configure the view for the selected state

}

 

@end

 

自定义cell

标签:

原文地址:http://www.cnblogs.com/wukun16/p/4883938.html

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