TableView can't scroll and can't reach detail View

motomast3r

New Member
I don't know why but my TableView isn't scrolling. I use https://github.com/edgecase/ECSlidingViewController and copied the code from the demo, but when I put in my custom code to parse an XML file I can't scroll the tableView and I can't reach the detail view, but the cell recognizes a touch on it. This is my viewDidLoad: \[code\][super viewDidLoad];// Do any additional setup after loading the view.self.view.layer.shadowOpacity = 0.75f;self.view.layer.shadowRadius = 10.0f;self.view.layer.shadowColor = [UIColor blackColor].CGColor;if (![self.slidingViewController.underLeftViewController isKindOfClass:[MenuViewController class]]) { self.slidingViewController.underLeftViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"Menu"];}[self.view addGestureRecognizer:self.slidingViewController.panGesture];self.menuBtn = [UIButton buttonWithType:UIButtonTypeCustom];menuBtn.frame = CGRectMake(8, 10, 34, 24);[menuBtn setBackgroundImage:[UIImage imageNamed:@"menuButton.png"] forState:UIControlStateNormal];[menuBtn addTarget:self action:@selector(revealMenu:) forControlEvents:UIControlEventTouchUpInside];[self.view addSubview:self.menuBtn];// Setupself.navigationItem.title = @"Lade...";formatter = [[NSDateFormatter alloc] init];[formatter setDateStyle:NSDateFormatterShortStyle];[formatter setTimeStyle:NSDateFormatterShortStyle];parsedItems = [[NSMutableArray alloc] init];self.itemsToDisplay = [NSArray array];self.tabBarItem.title = @"News";// Refresh buttonUIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];[refreshControl addTarget:self action: @selector (refresh) forControlEvents:UIControlEventValueChanged];self.refreshControl = refreshControl;[self.refreshControl endRefreshing];// ParseNSURL *feedURL = [NSURL URLWithString:@"https://floorball-butzbach.com/index.php?option=com_ninjarsssyndicator&feed_id=1&format=raw"];feedParser = [[MWFeedParser alloc] initWithFeedURL:feedURL];feedParser.delegate = self;feedParser.feedParseType = ParseTypeFull; // Parse feed info and all itemsfeedParser.connectionType = ConnectionTypeAsynchronously;[feedParser parse];\[/code\]
 
Back
Top