gpt4 book ai didi

iphone - 在 iPhone 中修改 MWPhotoBrowser

转载 作者:行者123 更新时间:2023-12-03 20:42:49 24 4
gpt4 key购买 nike

您好,我已经在我的 iPhone 应用程序中添加了 MWPhotoBrowser,它运行得很好,但现在我需要向我的照片库添加更多功能。

基本上要做几件事:

  • 向导航栏添加按钮
  • 减少两个图像之间的间距。

但是我不知道如何解决这个问题..我应该子类化照片浏览器还是应该对照片浏览器的源代码进行更改。

附注我尝试直接修改 MWPhotoBrowser.h 文件中的代码,但没有成功。没有进行任何更改。我对 iPhone 编程非常陌生,所以我不太了解发生了什么。任何帮助将不胜感激。我知道这是一个新手问题,所以请不要轻易投票:)

最佳答案

在 MWPhotoBrowser.m 文件中找到 setNavBarAppearance 方法并添加此

UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd 
target:self action:@selector(someAction)]; // This can be changed to your liking

self.navigationItem.rightBarButtonItem = rightButton;
[rightButton release];

关于iphone - 在 iPhone 中修改 MWPhotoBrowser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10696916/

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