zoukankan      html  css  js  c++  java
  • 自定义cell

    //

    //  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

  • 相关阅读:
    flex 遍历Object或者JSON对象内容的实现代码
    Flex Vector使用(转)
    Flex——Array,ArrayCollection,Vector性能比较(转)
    SQLSERVER远程备份、恢复(转)
    隐藏Jquery dialog 按钮
    GSM 短信相关AT指令(转)
    SQL Server 父子迭代查询语句,树状查询(转)
    js framework comparation
    eventEmitter
    调试 shell script 方法
  • 原文地址:https://www.cnblogs.com/wukun16/p/4883938.html
Copyright © 2011-2022 走看看