equal
deleted
inserted
replaced
198 |
198 |
199 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
199 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
200 return [self.listOfMissionIDs count]; |
200 return [self.listOfMissionIDs count]; |
201 } |
201 } |
202 |
202 |
203 -(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { |
203 - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { |
204 return (IS_IPAD()) ? self.tableView.rowHeight : 80; |
204 return (IS_IPAD()) ? self.tableView.rowHeight : 80; |
205 } |
205 } |
206 |
206 |
207 -(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
207 -(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
208 static NSString *CellIdentifier = @"CellTr"; |
208 static NSString *CellIdentifier = @"CellTr"; |