STF大学iOS教程中的demo--Attributor

作者: 静赏月之美 | 来源:发表于2016-10-31 23:44 被阅读165次

    前一段把iOS放了一段时间,结果就什么都忘了(真是鱼的记忆...)。没办法,只好把以前看过的东西再拾起来。于是从白胡子老爷爷的demo开始。

    把下面的内容写出来:

    1. 留下点什么,就当个笔记
    2. 给刚开始学习的同学们留下点什么...

    今天说的是Attributor这个demo。先说下知识点吧(他讲了很多,我能回忆的只剩这些了...)。

    属性字符串

    - (void)setupOutlineButton
    {
        if (self.outlineButton.currentTitle)
        {
            NSMutableAttributedString *title = [[NSMutableAttributedString alloc] initWithString:self.outlineButton.currentTitle];
            [title setAttributes:@{ NSStrokeWidthAttributeName : @3,
                                    NSStrokeColorAttributeName : self.outlineButton.tintColor}
                           range:NSMakeRange(0, [title length])];
            [self.outlineButton setAttributedTitle:title forState:UIControlStateNormal];
        }
    }
    

    在设置中修改字体大小后的通知处理

    - (void)viewWillAppear:(BOOL)animated
    {
        [super viewWillAppear:animated];
        
        [self usePreferredFonts];
        [[NSNotificationCenter defaultCenter] addObserver:self
                                                 selector:@selector(preferredFontsChanged:)
                                                     name:UIContentSizeCategoryDidChangeNotification
                                                   object:nil];
        
    }
    
    - (void)viewWillDisappear:(BOOL)animated
    {
        [[NSNotificationCenter defaultCenter] removeObserver:self
                                                        name:UIContentSizeCategoryDidChangeNotification
                                                      object:nil];
        
    }
    
    

    segue的准备

    - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
    {
        if ([segue.identifier isEqualToString:@"Analyze Text"])
        {
            if ([segue.destinationViewController isKindOfClass:[TextStatsViewController class]])
            {
                TextStatsViewController *tsvc = (TextStatsViewController *)segue.destinationViewController;
                tsvc.textToAnalyze = self.body.textStorage;
            }
        }
    }
    

    自动布局

    在这个demo中,老爷子还讲了自动布局。他介绍了三种方法,其中演示了在StoryBoard中用蓝色辅助线实现自动布局。
    (这个就没有什么代码了...)

    最后承上代码的地址
    https://github.com/Labrador2008/STF_iOS7

    未完待续

    相关文章

      网友评论

        本文标题:STF大学iOS教程中的demo--Attributor

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