关于如何为我的视图控制器添加额外的40个圆形矩形按钮的任何建议...我已经尝试通过故事板进行操作但当然,因为您可以理解唯一的可编辑空间是视图控制器中可见的空间。
所以我认为我必须使用代码添加额外的40个圆形矩形按钮,这些按钮是可编辑的,这样我就可以重命名它们,以便我可以将插座连接到每个单独的按钮,因为每个都将播放单独的短视频。
同样我选择按钮而不是表格视图的原因是因为这个视图控制器将通过我的“In App Purchases”中的购买来访问能够模糊/取消激活一些按钮/购买,如果他们还没有购买。或者表格视图也可以这样做吗?
以下是滚动视图的.h文件的代码
@interface ViewController17 : UIViewController <UIScrollViewDelegate> {
IBOutlet UIScrollView *scroller1;
}
@property (nonatomic, strong) UIScrollView *scroller1;
@end
以下是滚动视图的.m文件的代码
@implementation ViewController17
@synthesize scroller1;
- (void)viewDidLoad {
[scroller1 setScrollEnabled:YES];
[scroller1 setContentSize:CGSizeMake(320, 4000)];
scroller1.maximumZoomScale = 4.0;
scroller1.minimumZoomScale = 0.75;
scroller1.clipsToBounds = YES;
//here is the delegate portion below
scroller1.delegate = self;
[self.view bringSubviewToFront:scroller1];
[super viewDidLoad];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end