Convert cell to Full screen horizontal screen display

Source: Internet
Author: User

-(void) Fullbuttonaction: (UIButton *) sender{

UIWindow *keywindow = [uiapplication sharedapplication]. Keywindow;

if ([sender. Titlelabel. Text isequaltostring:@ " close "]) {

cgrect inwindowframe = [self. Lastsuperview convertrect:self. Frame Fromview: Keywindow];

self. Frame = inwindowframe;

[UIView animatewithduration:2 animations: ^{

[self. Lastsuperview addsubview:self];

self. Transform = cgaffinetransformmakerotation(0);

self. Frame = self. Lastframe;

[self. Rootview requestlayout];

} Completion: ^ (BOOL finished) {

[self. Fullscreenbutton settitle:@ " full screen " forstate:uicontrolstatenormal];

}];

return;

}

self. Lastsuperview = self. Superview;

self. Lastframe = self. Frame;

[Keywindow addsubview:self];

[Keywindow bringsubviewtofront:self];

}

-(void) didmovetosuperview{

UIWindow *keywindow = [uiapplication sharedapplication]. Keywindow;

if (self. Superview = = Keywindow) {

cgrect inwindowframe = [self. Lastsuperview convertrect:self. Frame Toview: Keywindow];

self. Frame = inwindowframe;

[UIView animatewithduration:2 animations: ^{

cgsize windowsize = [uiscreen mainscreen]. Bounds. Size;

self. Frame = cgrectmake(0, 0, windowsize. Height, windowsize. width);

self. Transform = cgaffinetransformmakerotation(m_pi_2);

self. Center = cgpointmake(windowsize. Width/2, windowsize. Height/2);

[self. Rootview requestlayout];

} Completion: ^ (BOOL finished) {

[self. Fullscreenbutton settitle:@ " close " forstate:uicontrolstatenormal];

}];

    }  

}

Fullbuttonaction: Response to Full screen button in cell

Transition animations are implemented with transform.

The Didmovetosuperview method is the callback method after the object is added to a view

Convert cell to Full screen horizontal screen display

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.