0
我的目標C相當新的,所以希望這一切有意義。我已經宣佈的UIView在.h文件中如何在IOS滑出式工具欄菜單添加按鈕編程
@property (strong, nonatomic) UIView *menuViewone;
在.M文件我在viewDidLoad中
menuViewone =[[UIView alloc ]initWithFrame:CGRectMake(-400, 0, 200, 568) ];
[menuViewone setBackgroundColor:[UIColor whiteColor]];
[self.view addSubview:menuViewone];
宣佈的UIView,並設置按鈕的方法視圖框
- (IBAction)collectionmenutwo:(id)sender {
if (menuViewone.frame.origin.x >=0) {
[UIView animateKeyframesWithDuration:0.5 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
menuViewone.frame=CGRectMake(-400, 100, 300, 568);
} completion:^(BOOL finished) {
}];
}
else
{
[UIView animateKeyframesWithDuration:0.5 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
menuViewone.frame=CGRectMake(200, 100, 300, 568);
} completion:^(BOOL finished) {
}];
}}
現在我想聲明在這個UIView中的按鈕...我怎麼可以做到這一點編程?
按鈕沒有顯示在視圖 –