gpt4 book ai didi

iphone - 在 iPhone 中使用 UIScrollView 滚动图像

转载 作者:行者123 更新时间:2023-11-29 04:20:27 25 4
gpt4 key购买 nike

我是 iphone 开发的新手,我正在做一个简单的应用程序来练习。在该应用程序中,只有一个 View 上有图像。我希望能够向左或向右滑动,让第一张图像退出 View ,第二张图像进入 View 。这些图像不同,我希望它们看起来像是相连的。我需要它能够更改图像或在一系列滑动后重新启动。我仅使用 ScrollView 来执行此操作。

我尝试过一些事情:

ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UIScrollViewDelegate>
{
UIImageView *imgView;
UIScrollView *scrollView;
}

@property (nonatomic,retain)IBOutlet UIImageView *imgView;
@property (nonatomic, retain) IBOutlet UIScrollView *scrollView;

//- (id)initWithPageNumber:(int)page;
- (IBAction)changePage:(id)sender;

@end

ViewController.m

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

@synthesize imgView,scrollView;

- (void)viewDidLoad
{
[super viewDidLoad];

}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
/*
- (id)initWithPageNumber:(int)page{
if (self = [super initWithNibName:@"MyView" bundle:nil])
{
pageNumber = page;
}
return self;
}
*/



- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollview
{
scrollView.contentOffset = CGPointMake(scrollview.bounds.size.width, 0);
}

- (IBAction)changePage:(id)sender
{

NSArray *images = [[NSArray alloc] initWithObjects:@"1.jpeg",@"2.jpeg",@"3.jpeg", nil];
scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds];
[self.view addSubview:scrollView];
CGRect cRect = scrollView.bounds;

for (int i = 0; i < images.count; i++){
imgView = [images objectAtIndex:i];
imgView.frame = cRect;
[scrollView addSubview:imgView];
cRect.origin.x += cRect.size.width;
}

scrollView.contentSize = CGSizeMake(scrollView.frame.size.width * images.count, scrollView.bounds.size.height);
scrollView.contentOffset = CGPointMake(scrollView.bounds.size.width, 0);

}

@end

当我运行应用程序时,我仍然无法在图像上滑动。难道我做错了什么?需要一些这方面的指导。谢谢..

最佳答案

此错误表明您在 Interface Builder 中与 View Controller 类中不存在的 IBOutlet 连接。

确保您的 IBOutlet 命名正确,并且您已删除 IB 中所有过时的连接。

关于iphone - 在 iPhone 中使用 UIScrollView 滚动图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13044477/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com