Как создать табличное представление программно? - PullRequest
0 голосов
/ 11 мая 2011

Мне нужно использовать UITable View в моем приложении, и оно должно поддерживать как альбомную, так и книжную ориентации.

Если я перетаскиваю UItableview из компоновщика интерфейса напрямую, то как я могу точно его контролировать

Если нет, то предложите мне сделать то же самое программно.

Спасибо Ризван

1 Ответ

0 голосов
/ 11 мая 2011
    - (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;

    }
...