0

想知道是否有人知道如何在底部工具栏中实现箭头,如下所示?如果有人能让我对此有所了解,将不胜感激。我已经看到很多带有此类箭头的应用程序来浏览页面,但似乎无法在 XCode 中找到它们。见下文...

谢谢 :)

在此处输入图像描述

4

2 回答 2

1

只需设置一个 UIToolbar 并附加这两个图像(我会给你标准图像和视网膜图像的存档链接):链接

//Creating UIToolbar
    toolBar = [[UIToolbar alloc]init];
    toolBar.frame = CGRectMake(//set some frame);
    toolBar.barStyle = UIBarStyleBlackOpaque;
    [toolBar sizeToFit]; 

    //Creating buttons
    UIBarButtonItem *prev = [[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"previous.png"] style:UIBarButtonItemStylePlain target:self action:@selector(myaction:)] autorelease]; 
UIBarButtonItem *next = [[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"next.png"] style:UIBarButtonItemStylePlain target:self action:@selector(myaction:)] autorelease]; 

     //Creating the array with the buttons
     NSArray *items = [NSArray arrayWithObjects:prev,next, nil];

//Assigning the array to the toolbar
[toolBar setItems:items];
    [self.view addSubview:toolBar];
    [toolBar release]; 

你完成了!

于 2012-06-22T18:15:39.770 回答
0

我猜这些箭头是 Apple 为 Safari、Photo Library 等定制的。
如果你没有 Photoshop 类似的东西,我认为你可以在 Paint 中制作这些箭头。

于 2012-06-22T18:08:09.317 回答