#objective-c #xcode #ipad #uitableview #orientation
#objective-c #xcode #iPad #uitableview #ориентация
Вопрос:
Мне нужно использовать UITable View в моем приложении, и оно должно поддерживать как альбомную, так и книжную ориентацию.
Если я перетаскиваю UITableView непосредственно из конструктора интерфейса, то как я могу точно им управлять
Если нет, то предложите мне сделать то же самое программно.
Спасибо Rizwan
Комментарии:
1. попробуйте принять ваши предыдущие ответы
Ответ №1:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;//Returns the no of sections in the tableview
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 5;//Returns the no of rows in the tableview
}
//This method is called everytime when a row is created.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
cell.textLabel.text =@"tableview";
return cell;
}