美文网首页
备忘小知识点

备忘小知识点

作者: 路在脚下了 | 来源:发表于2017-03-02 15:58 被阅读5次

    OC语言(会持续添加)

    1.搭建cell注意

    • 在storyBoard中,如果直接在tableView中搭建cell,那么在代码中可以不用注册代码
    • 如果直接使用xib创建cell,那么使用这个cell需要注册。

    2.给leftBarButtonItem添加左边距

    UIBarButtonItem *leftButon = [UIBarButtonItem initWithImageName:@"navigationbar_menu" target:self action:@selector(leftBarItemClick)];
    UIBarButtonItem *fixedButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
     fixedButton.width = -10;
    self.navigationItem.leftBarButtonItems = @[fixedButton, leftButon];
    

    3.清除xcode里多余的profile

    • 点击桌面,快捷键commang+shift+G ,前往文件夹
    ~/Library/MobileDevice/Provisioning Profiles
    

    相关文章

      网友评论

          本文标题:备忘小知识点

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