在iPhone中修改MWPhotoBrowser

时间:2012-05-22 06:36:01

标签: iphone xcode ios5 subclassing

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

基本上做了几件事:

  • 在导航栏中添加一个按钮
  • 减少两张图片之间的空间。

但是我不知道如何处理这个问题..我应该是照片浏览器的子类,还是应该在Photo Browser的源代码中进行更改。

P.S。我试图直接修改MWPhotoBrowser.h文件中的代码,该文件不起作用。没有做出任何改变。我是iPhone编程的新手,所以我不知道发生了什么。任何帮助将不胜感激。我知道这是一个愚蠢的问题,所以请轻松放下投票:)

2 个答案:

答案 0 :(得分:4)

在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];

答案 1 :(得分:0)

设置填充:10到0;

完成了。

Thnaks