-1

我将添加从下方出现/消失的按钮的下拉列表,作为本机 iphone 中的“共享按钮”。我怎样才能做到这一点?

提前致谢。

4

1 回答 1

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];
于 2013-04-21T15:05:59.347 回答