6
我有一個快速的問題,我希望你們可以幫我回答。現在我在故事板中有一個UIPageControl,根據你所在的點是如何改變圖像的,但是,現在你必須按點來改變點/圖像,我怎樣才能通過圖像/點改變通過刷卡?Xcode:如何使用滑動手勢更改UIPageControl值?
這是我爲我的.h
#import <UIKit/UIKit.h>
@interface PageViewController : UIViewController
@property (strong, nonatomic) IBOutlet UIImageView *dssview;
- (IBAction)changephoto:(UIPageControl *)sender;
@end
代碼這是我爲我的.m代碼
#import "PageViewController.h"
@interface PageViewController()
@end
@implementation PageViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)changephoto:(UIPageControl *)sender {
_dssview.image = [UIImage imageNamed:
[NSString stringWithFormat:@"%d.jpg",sender.currentPage+1]];
}
@end
任何幫助將不勝感激。 謝謝
真棒,它說該「頁面」是未聲明的標識符。在哪裏可以添加這個?任何幫助? – 2013-05-06 11:59:51
對不起!忘了提及,頁面是你的UIPageControl對象。 – 2013-05-06 12:06:56
我編輯了我的答案,請檢查 – 2013-05-06 12:16:01