(ストーリーボード付きの XCode 4、iPhone 用アプリ)
My DetailView: MainTableViewController でセルが選択されたときに、セグエを介して受信した詳細を表示するための、Label と ImageView で満たされた UIView。Labels と ImageViews を代わりにスクロール ビューで表示するため、この UIView に UIScrollView を追加しました。
アプリを実行したときに DetailViewController に表示されるのは、空の ScrollView だけです。TableView から渡したコンテンツは表示されず、selectedObject を取得していません。UIScrollView が追加された後、コンテンツを表示し、swipeDetectedLeft でセルをスワイプできるようにするにはどうすればよいですか? 私のコードで例を作っていただければ幸いです。
詳細ViewController.h:
@interface DetailViewController : UIViewController {
IBOutlet UIScrollView *viewScroller;
//Added a ScrollView..
}
@property (strong, nonatomic) NSArray *detailsDataSource;
//Recieved from the TableView to know the order of the sorted TableView cells, cells populated with a mutable array from a plist of dictionaries)
@property int detailIndex;
//To know which cell selected (for swiping throug cells)
@property (nonatomic, strong) NSString *selectedObject;
//Content of selected cell from tableview (for swiping through cells)
@property (nonatomic, strong) IBOutlet UILabel *aLabel;
@property (nonatomic, strong) IBOutlet UIImageView *anImageView;
//to display content
DetailViewController.m:
#import "DetailViewController.h"
@interface DetailViewController ()
@end
@implementation DetailViewController
@synthesize aLabel,anImageView;
@synthesize selectedObject;
@synthesize detailsDataSource, detailIndex;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
}
- (void)viewDidLoad
{
[super viewDidLoad];
[viewScroller setScrollEnabled:YES];
[viewScroller setContentSize:CGSizeMake(320, 700)];
//A customized Label for NavigationBar
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 480, 44)];
label.backgroundColor = [UIColor clearColor];
label.numberOfLines = 2;
label.font = [UIFont boldSystemFontOfSize: 14.0f];
label.shadowColor = [UIColor colorWithWhite:0.0 alpha:0.5];
label.textAlignment = UITextAlignmentCenter;
label.textColor = [UIColor whiteColor];
label.text = [selectedObject valueForKey:@"Name"];
self.navigationItem.titleView = label;
[label release];
aLabel.text = [selectedObject valueForKey:@"A Label"];
anImageView.image = [UIImage imageNamed:[selectedWine valueForKey:@"An Image"]];
self.navigationController.navigationBar.translucent = YES;
self.wantsFullScreenLayout = YES;
UISwipeGestureRecognizer *leftGesture = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeDetectedLeft:)];
leftGesture.direction = UISwipeGestureRecognizerDirectionLeft;
[self.view addGestureRecognizer:leftGesture];
}
- (void)swipeDetectedLeft:(UISwipeGestureRecognizer *)sender
{
if (detailIndex != [detailsDataSource count])
detailIndex++;
aLabel.text = [[detailsDataSource objectAtIndex: detailIndex] valueForKey:@"A Label"];
//Here follows ImageView and NavigationbBar Label for the swipe..
}
編集:
aLabel.text = @"Test" を設定すると、機能します。したがって、UIScrollView は selectedObject を取得していません。
MainTableViewController.m:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([[segue identifier] isEqualToString:@"DetailSegue"]) {
NSIndexPath *selectedRowIndex = [self.tableView indexPathForSelectedRow];
DetailViewController *detailViewController = [segue destinationViewController];
detailViewController.selectedObject = [sortedObjects objectAtIndex:selectedRowIndex.row];
detailViewController.detailsDataSource = [[NSArray alloc]initWithArray:sortedObjects];
detailViewController.detailIndex = selectedRowIndex.row;
}
}