美文网首页
iOS开发点滴

iOS开发点滴

作者: 县下卖柴人 | 来源:发表于2018-04-09 16:49 被阅读0次

设置navigation titleView 居中

添加左边按钮后再添加titleView会导致titleView不居中,之前是直接用UIImageView直接赋值给titleView宽度默认为屏幕宽度除去左边按钮所以不居中。应该用UIView添加UIImageview再赋值给titleView。

    UIView *vc = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];
//    vc.backgroundColor = RandomColor;
    
    UIImageView *titleView = [[UIImageView alloc] init];
    titleView.frame = vc.frame;
    titleView.contentMode = UIViewContentModeScaleAspectFit;
    [titleView setImage:[UIImage imageNamed:@"hos"]];
    [vc addSubview:titleView];
    self.navigationItem.titleView = vc;

获取父类的navigationController

[self.parentViewController.navigationController popViewControllerAnimated:YES];

设置tableView section间隔

- (CGFloat)tableView:(UITableView*)tableView
heightForHeaderInSection:(NSInteger)section {
    if (section == 0) {
        return 6.0;
    }
    return 1.0;
}
- (CGFloat)tableView:(UITableView*)tableView
heightForFooterInSection:(NSInteger)section {
    return 5.0;
}
- (UIView*)tableView:(UITableView*)tableView
viewForHeaderInSection:(NSInteger)section {
    return [[UIView alloc] initWithFrame:CGRectZero];
}
- (UIView*)tableView:(UITableView*)tableView
viewForFooterInSection:(NSInteger)section {
    return [[UIView alloc] initWithFrame:CGRectZero];
}

相关文章

  • iOS开发点滴

    设置navigation titleView 居中 添加左边按钮后再添加titleView会导致titleView...

  • 开发中记录的点点滴滴

    开发中记录的点点滴滴 1. iOS 组件化 2. iOS 打包成framework[https://www.jia...

  • iOS开发优秀博客和软件推荐

    iOSBlogAndTools iOS开发优秀博客和软件推荐 iOS开发中文博客 iOS开发工具 iOS开发网站 ...

  • iOS开发点滴-开发遇到的问题

    1.在自己定义的导航栏中或者设计稿中经常需要去除导航栏的1px横线,主要是颜色太不协调了![去除之前的图片] 要去...

  • 收录 : iOS支付开发

    iOS 银联支付开发流程iOS 微信支付开发流程iOS 支付宝支付开发流程iOS Apple Pay开发流程App...

  • IOS开发问题索引(四)

    全系列文章索引: IOS开发问题索引(一) IOS开发问题索引(二) IOS开发问题索引(三) IOS开发问题索引...

  • IOS开发问题索引(八)

    全系列文章索引: IOS开发问题索引(一) IOS开发问题索引(二) IOS开发问题索引(三) IOS开发问题索引...

  • IOS开发问题索引(七)

    全系列文章索引: IOS开发问题索引(一) IOS开发问题索引(二) IOS开发问题索引(三) IOS开发问题索引...

  • IOS开发问题索引(六)

    全系列文章索引: IOS开发问题索引(一) IOS开发问题索引(二) IOS开发问题索引(三) IOS开发问题索引...

  • IOS开发问题索引(五)

    全系列文章索引: IOS开发问题索引(一) IOS开发问题索引(二) IOS开发问题索引(三) IOS开发问题索引...

网友评论

      本文标题:iOS开发点滴

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