关于Xcode的代码块

关于Xcode的代码块,我感觉应该是这个编译器里最好用的部分的,用的好的话对你开发的速度是成十倍百倍的效率提升。期间也转用过AppCode,最终还是用回Xcode,转回来又两个主要原因,首先还是被流畅度给打败了,其次虽然我也觉得idea他们公司编译器的快捷键也很强大确实也很好用,但是我还是喜欢这个代码块,对我个人来说简直就是神器。

很早之前也研究过AppCode有没有这样可以高度自定义的代码块功能,但是没有研究出来,如果有知道的大神请在评论区教一教我😂。。。

  将近3年的Xcode的使用经验,我自己多少也总结了不少自己常用的代码块,请将目光向下移动。

  • 快速创建数组属性

    快捷键:ht_array

    输出:@property (nonatomic,copy) NSArray * <#name#>;

  • 快速创建基本数据类型属性

    快捷键:ht_assign

    输出:@property (nonatomic,assign) <#class#> <#name#>;

  • 快速创建字符属性

    快捷键:ht_string

    输出:@property (nonatomic,copy) NSString * <#name#>;

  • 快速创建强引用属性

    快捷键:ht_strong

    输出:@property (nonatomic,strong) <#class#> * <#name#>;

  • 快速创建弱引用属性

    快捷键:ht_weak

    输出:@property (nonatomic,weak) <#class#> * <#name#>;

  • 快速创建弱引用指针

    快捷键:ht_weak_self

    输出:__weak typeof(self) __self = self;

  • 快速创建代码块属性

    快捷键:ht_block

    输出:@property (nonatomic, copy) void(^<#name#>)();

  • 截取系统侧滑手势[备注:有些特殊情况下需要禁用掉系统的侧滑功能,但是有的时候直接禁用nav的侧滑手势在某些可能下会造成系统的假死(我遇到过很多次),所以,这是我经常使用的方法],这个方法就是通过添加手势来截断系统的手势。

    快捷键:ht_cehua

    输出:
    UIScreenEdgePanGestureRecognizer *ges = [[UIScreenEdgePanGestureRecognizer alloc] initWithTarget:self action:nil];
    ges.edges = UIRectEdgeLeft;// 指定左边缘滑动
    [self.view addGestureRecognizer:ges];

  • 快速创建按钮

    快捷键:ht_creatButton

    输出:

    UIButton *<#button#> = [UIButton buttonWithType:UIButtonTypeCustom];
    [<#button#> setTitleColor:[MyColor pg_mainTitleColor] forState:UIControlStateNormal];
    <#button#>.titleLabel.font = [UIFont systemFontOfSize:<#size#>];
    [<#button#> setTitle:@"" forState:UIControlStateNormal];
    <#button#>.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;

  • 键盘监听

    快捷键:ht_keyboarderObeserver

    输出:

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillShow:)
                                                 name:UIKeyboardWillShowNotification
                                               object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self
                                              selector:@selector(keyboardWillHide:)
                                                  name:UIKeyboardWillHideNotification
                                                object:nil];
    - (void)keyboardWillShow:(NSNotification *)notification
    {
        //获取键盘的高度
        NSDictionary *userInfo = [notification userInfo];
        NSValue *value = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];
        CGRect keyboardRect = [value CGRectValue];
        int height = keyboardRect.size.height;
    
    }
    
    //当键退出
    - (void)keyboardWillHide:(NSNotification *)notification
    {
        //获取键盘的高度
        NSDictionary *userInfo = [notification userInfo];
        NSValue *value = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey];
        CGRect keyboardRect = [value CGRectValue];
        int height = keyboardRect.size.height;
    
    }
    
  • 快速创建按钮

    快捷键:ht_creatTableViewHeaderBtn

    输出:

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    [button setTitleColor:<#Color#> forState:UIControlStateNormal];
    [button setBackgroundColor:<#Color#>];
    button.titleLabel.font = [UIFont systemFontOfSize:<#FontSize#>];
    [button setTitle:@"" forState:UIControlStateNormal];
    button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
    [button setContentEdgeInsets:UIEdgeInsetsMake(0, 15, 0, 0)];
    return button;
    
  • 快速创建tableview

    快捷键:ht_creatTableView

    输出:

    UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectZero style:UITableViewStylePlain];
    tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    tableView.delegate = self;
    tableView.dataSource = self;
    tableView.bounces = YES;
    tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeOnDrag;
    tableView.backgroundColor = <#Color#>;
    tableView.estimatedRowHeight = 0;
    tableView.estimatedSectionHeaderHeight = 0;
    tableView.estimatedSectionFooterHeight = 0;
    self.tableView = tableView;
    [self.view addSubview:tableView];
    [tableView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.mas_equalTo(self.navigationView.mas_bottom);
        make.left.bottom.right.equalTo(self.view);
    }];
    
  • 快速创建tableview代理方法

    快捷键:ht_creatTableView_delegate

    输出:

#pragma -mark- tableView delegate  datasuoce
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return <#count#>;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return <#cell#>;
}

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return <#count#>;
}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}
  • 快速创建collectionView

    快捷键:ht_creatCollectionView

    输出:

UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc]init];
flowLayout.headerReferenceSize = CGSizeMake(<#width#>, <#height#>);
flowLayout.footerReferenceSize = CGSizeMake(<#width#>, <#height#>);

UICollectionView *collectionView = [[UICollectionView alloc]initWithFrame:CGRectZero collectionViewLayout:flowLayout];
collectionView.delegate = self;
collectionView.dataSource = self;
collectionView.backgroundColor = [UIColor whiteColor];

[collectionView registerNib:[UINib nibWithNibName:@"" bundle:nil] forCellWithReuseIdentifier:@"cell"];
[collectionView registerNib:[UINib nibWithNibName:@"" bundle:nil] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"head"];
[collectionView registerNib:[UINib nibWithNibName:@"" bundle:nil] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footer"];
[self.view addSubview:collectionView];

self.flowLayout = flowLayout;
self.collectionview = collectionView;

[collectionView mas_makeConstraints:^(MASConstraintMaker *make) {
    make.top.mas_equalTo(self.navigationView.mas_bottom);
    make.left.bottom.right.equalTo(self.view);
}];
  • 快速创建collectiongView代理

    快捷键:ht_creatCollectionView_delegate

    输出:

    - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
    {
        return <#count#>;
    }

    - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
    {
        return <#count#>;
    }

    - (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
    {
        return nil;
    }

    - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath;
    {
        //如果是头视图
        if ([kind isEqualToString:UICollectionElementKindSectionHeader])
        {

            return nil;
        }
        else if ([kind isEqualToString:UICollectionElementKindSectionFooter])
        {
            return nil;
        }

        return nil;
    }


    - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath;
    {

    }

    - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
    {
        return CGSizeMake(<#width#>, <#height#>);
    }


    - (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
    {
        return UIEdgeInsetsMake(0, 0, 0, 0);
    }


    - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
    {
        return 0;
    }


    - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
    {
        return 0;
    }

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