gpt4 book ai didi

ios - 如何在表格 View Controller 中的导航栏正下方添加自定义 View ?

转载 作者:行者123 更新时间:2023-11-28 20:24:37 24 4
gpt4 key购买 nike

我正在尝试创建这样的界面

enter image description here

我有一张带阴影的破纸,它位于导航栏下方但位于我的表格 View 上方。

我在我的 tableview Controller 中使用以下代码

- (void)viewDidLoad
{
[super viewDidLoad];

[self.view addSubview:[[UIImageView alloc] initWithImage:[UIImage imageNamed: @"ripped-paper"]]];
}

除了 ripper paper 与表格 View 一起滚动外,这工作正常。我要求它固定在导航栏下方。

有什么想法吗?

最佳答案

在 iOS 6 中,你可以只使用 UINavigationBarshadowImage 属性。 .

UIImage *image = [[image imageNamed:@"tornPaper"] resizableImageWithCapInsets:UIEdgeInsetsMake(/* Your insets here */)];
self.navigationItem.navigationBar.shadowImage = image;

关于ios - 如何在表格 View Controller 中的导航栏正下方添加自定义 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14423682/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com