简体   繁体   中英

How to expand MessagesViewController to full screen?

I am making an iMessage extension and I want it to expand to full screen when the user begins to interact.

What is the API to do this?

self.requestPresentationStyle(.expanded)

Some more helpful code

if self.presentationStyle == .compact {
    self.requestPresentationStyle(.expanded)
} else {
    self.requestPresentationStyle(.compact)
}

Note: These calls are made from inside the MessagesViewController class

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM