参加工作前两天的总结

今天是2017年7月7日-星期六

2017/7/5-2017/7/6,我作为一个新人进入到公司任职iOS开发实习生,在今天对这两天的工作进行一下总结:

1.我作为一个新人加入到艺网这个大家庭之中,通过这两天的工作感觉这是一个很和谐的大家庭,并且不论是工作氛围,还是休息时的氛围都很是不错。

2.在这两天之中我做了一个分类的Demo并且学习了一下Masonry这个第三方的使用方法:
2.1 分类Demo
先上一个结果图


结果.png

-------------------------
做的Demo比较low,但不要在意这些细节。

介绍一下文件

SudokuViewAndButton.h     //这个View用来放集合视图和按钮
SudokuButtonShadowView.h  //这个View用来实现按钮
CustomCollectionView.h    //这个View用来实现集合视图
SudokuCollectionCell.h    //这个一看就知道是集合视图的item
CollectionHeaderView.h    //这个也很易懂的,用来实现集合视图的头视图

简单介绍下各个文件

注:代码并不全,如果想要完整代码请到<a href='https://github.com/9527xiaoyu/SudokuDemo.git'>这里</a>下载。
CustomCollectionView
//这个类主要是做一个类似九宫格的集合视图
@interface CustomCollectionView()

@property(nonatomic,strong)UICollectionView *collection;
@property(nonatomic,strong)NSArray *itemsArray;
@property(nonatomic,strong)NSArray *categoryArray;
@property(nonatomic,strong)NSMutableArray *tempArr;
@property(nonatomic,strong)UILabel *itemsLab;
@end

@implementation CustomCollectionView
//由于是自定义的view必须有个init
- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        [self anywayInit];
    }
    return self;
}

- (void)anywayInit
{
    [self configParam];
    [self configView];
    [self configData];
    [self configConstraint];
}

//参数的设置填入这里
- (void)configParam
{
    
}

//加载视图
- (void)configView
{
    [self addSubview:self.collection];
}

//做一些控件的布局 -- 用的是Masonry
- (void)configConstraint
{
    [self.collection mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.and.left.equalTo(self).offset(0);
        make.right.equalTo(self).offset(0);
        make.bottom.equalTo(self).offset(-20);
    }];
    [self.itemsLab mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.and.left.equalTo(self).offset(25);
        make.left.equalTo(self).offset(18);
        make.bottom.equalTo(self).offset(-29);
        make.width.offset(35);
    }];
}

//用于存储数据
- (void)configData
{
    
}

//懒加载
-(UICollectionView *)collection{
    if (!_collection) {
        UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc]init];
        //添加头 三步
        layout.headerReferenceSize=CGSizeMake(self.bounds.size.width, 40);
        //添加按钮控件
        layout.itemSize = CGSizeMake(78, 56);
        layout.minimumInteritemSpacing = 20;//行间隔
        layout.minimumLineSpacing = 11;//列间隔
        layout.scrollDirection = UICollectionViewScrollDirectionVertical;//水平排列
        
        _collection = [[UICollectionView alloc]initWithFrame:CGRectZero collectionViewLayout:layout];
        _collection.delegate=self;
        _collection.dataSource=self;
        //注册MYCollectionViewCell
        [_collection registerClass:[SudokuCollectionCell class] forCellWithReuseIdentifier:@"cell"];
        //添加头 一步:注册头视图,不注册则奔溃
        [_collection registerClass:[CollectionHeaderView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"collectionHeader"];
        _collection.backgroundColor = [UIColor whiteColor];
        
    }
    return _collection;
}

//block回调
-(void)CustomCollectionViewWithItemsArray:(NSArray *)itemsArray CategoryArray:(NSArray *)categoryArray Requst:(CustomCollectionCheckedBlock)block{
    self.itemsArray=itemsArray;
    self.categoryArray=categoryArray;
    self.tempArr = [NSMutableArray arrayWithArray:self.categoryArray];
    self.callback = block;
    [self anywayInit];
    
}

#pragma MARK - delegate
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
    return 4;
}

-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    return 4;
}

//添加一个补充视图(头/脚) 二步
-(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
    CollectionHeaderView *headView=[collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"collectionHeader" forIndexPath:indexPath];
    headView.titleLabel.text=_itemsArray[indexPath.section];
    return headView;
}

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    SudokuCollectionCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
    cell.pictureView.image=[UIImage imageNamed:@"placeholder.png"];
    cell.titleName.text=self.categoryArray[indexPath.section][indexPath.row];
    return cell;
}

-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
    self.callback(indexPath.section, indexPath.row,self.categoryArray[indexPath.section][indexPath.row]);
    
}

@end
SudokuCollectionCell
//.h文件中需要定义
@property(nonatomic,strong)UIImageView *pictureView;
@property(nonatomic,strong)UILabel     *titleName;
//.m文件
//@implementation SudokuCollectionCell

- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        [self anywayInit];
    }
    return self;
}

- (void)awakeFromNib
{
    [super awakeFromNib];
    [self anywayInit];
}

- (void)anywayInit
{
    [self configParam];
    [self configView];
    [self configData];
    [self configConstraint];
}

- (void)configParam
{
    self.layer.cornerRadius=5;
//    self.backgroundColor=[UIColor redColor];
//    self.titleName.textColor = [UIColor colorWithRed:255.0 green:255.0 blue:255.0 alpha:1];
    self.titleName.textColor = [UIColor blackColor];
}

- (void)configView
{
    [self.contentView addSubview:self.pictureView];
    [self.contentView addSubview:self.titleName];
}

- (void)configConstraint
{
    //图片
    [self.pictureView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.equalTo(self.contentView).offset(0);
        make.center.equalTo(self.contentView);
        
    }];
    //标题
    [self.titleName mas_makeConstraints:^(MASConstraintMaker *make) {
        make.center.equalTo(self.pictureView);
        make.size.mas_equalTo(CGSizeMake(78, 56));
    }];
}

- (void)configData
{
    
}

-(UIImageView *)pictureView{
    if (!_pictureView) {
         self.pictureView = [[UIImageView alloc]init];
    }
    return _pictureView;
}

-(UILabel *)titleName{
    if (!_titleName) {
        self.titleName = [[UILabel alloc]init];
        self.titleName.font = [UIFont fontWithName:@".PingFang-SC-Medium" size:14];
        self.titleName.textAlignment = NSTextAlignmentCenter;
    }
    return _titleName;
}

CollectionHeaderView
//.h
@property(nonatomic,strong)UILabel* titleLabel;
//.m
@implementation CollectionHeaderView

- (instancetype)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        [self anywayInit];
    }
    return self;
}

- (void)anywayInit
{
    [self configParam];
    [self configView];
    [self configData];
    [self configConstraint];
}

- (void)configParam
{
    self.titleLabel.textColor=[UIColor blackColor];
//    self.backgroundColor = [UIColor blueColor];
}

- (void)configView
{
    [self addSubview:self.titleLabel];
}

- (void)configConstraint
{
    [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.and.bottom.equalTo(self).offset(0);
        make.left.equalTo(self).offset(0);
        make.right.mas_equalTo(-10.0);
    }];
}

-(UILabel *)titleLabel{
    if (!_titleLabel) {
        _titleLabel=[[UILabel alloc]init];
        _titleLabel.font=[UIFont fontWithName:@".PingFang-SC-Medium" size:16];
        _titleLabel.textAlignment=NSTextAlignmentLeft;
    }
    return _titleLabel;
}

@end
SudokuViewAndButton与SudokuButtonShadowView

这里就不再拷贝代码,仅仅做一下说明。原因是这两个类中的方法与之前的文件方法相差不多。
先说一下SudokuButtonShadowView这个类的组成,这个类中实现了一个-(void)ButtonShadowViewWithRequst:(SudokuButtonShadowViewBlock)block;方法用于回调点击事件。其次在.m文件中阴影的效果实现是通过在按钮(button)下添加一个View,用这个View做阴影实现的。
SudokuViewAndButton这个类就更简单了,它主要实现的是将SudokuButtonShadowView和集合视图显示出来。

这里只做了简单的介绍,并且只说了大致的意思。欢迎大家留言。在这里也可以下载我的<a href='https://github.com/9527xiaoyu/SudokuDemo.git'>Demo</a>,不要忘了在star我哦
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,561评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,218评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,162评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,470评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,550评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,806评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,951评论 3 407
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,712评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,166评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,510评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,643评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,306评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,930评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,745评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,983评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,351评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,509评论 2 348

推荐阅读更多精彩内容