我正在创建一个iphone应用程序,其中我使用Three20开源照片库。现在我首先要添加一个视图,其中显示一些按钮,然后根据按钮点击类别点击按钮照片库节目。 当我第一次打开我的应用程序时,应显示按钮屏幕。
答案 0 :(得分:1)
您可以像这样创建一个新视图 -
UIView *v = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 10)];
v.backgroundColor = [UIColor redColor];
将v
作为子视图添加到您的超级视图中。希望这会有所帮助...
答案 1 :(得分:1)
UIView *buttonView = [[UIView alloc] initWithFrame:CGRectMake(40.0f,40.0f,240.0f,400.0f)];
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(10.0f,10.0f,80.0f,50.0f); //frame is RELATIVE to PARENT view
[button setTitle:@"Button Title" forState:UIControlStateNormal];
[buttonView addSubview:button];
[self.window addSubview:buttonView];