IOS TableView Landscape Scrolling

Source: Internet
Author: User

1. UITableView Settings

CGRect tableviewrect = CGRectMake (0.0, 0.0, 50.0, 320.0);
Self.tableview = [[UITableView alloc] Initwithframe:tableviewrect Style:uitableviewstyleplain];
Tableview.center = Cgpointmake (SELF.VIEW.FRAME.SIZE.WIDTH/2, SELF.VIEW.FRAME.SIZE.HEIGHT/2);
Tableview.delegate = self;
Tableview.datasource = self;

The TableView rotates 90 degrees counterclockwise.
Tableview.transform = Cgaffinetransformmakerotation (-M_PI/2);

ScrollBar not displayed
Tableview.showsverticalscrollindicator = NO;

2. UITableViewCell Settings

-(UITableViewCell *) TableView:( UITableView *) Atableview Cellforrowatindexpath:( nsindexpath*) Indexpath
{
UITableViewCell *cell = [TableView dequeuereusablecellwithidentifier:@ "identifier"];
if (cell = = nil) {
cell = [[[UITableViewCell alloc] initwithstyle:uitableviewcellstylesubtitle [email protected] "identifier"] Autorelease];

Cell rotates 90 degrees clockwise
Cell.contentView.transform = Cgaffinetransformmakerotation (M_PI/2);
}

return cell;
}

IOS TableView Landscape Scrolling

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.