iphone - 从下面显示按钮列表

时间:2013-04-21 15:00:53

标签: iphone xcode

我会添加一个从下方出现/消失的按钮下拉列表,作为"分享按钮"在原生的iPhone。我怎么能这样做?

提前致谢。

1 个答案:

答案 0 :(得分:1)

共享视图是一个UIActivityController对象,你只能用它来共享等等。

最好的方法是创建一个自定义UIView并将按钮放入其中。然后你将它动画到屏幕的可见部分然后再出来。如果您需要一个简单的代码示例,请告诉我。

更新

// Create your UIView and connect in your storyboard/XIB
UIView *myView = [[UIView alloc] init];

// Add the UIButtons to your UIView
UIButton *button = [[UIButton alloc] init];
[myView addSubview:button];

// Animate the UIView that contains the buttons
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.15];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
myView.frame = CGRectMake(0, 740, 768, 264);
[UIView commitAnimations];