User:Nicolas17/MobileMail

From iPhone Development Wiki
< User:Nicolas17
Revision as of 05:10, 13 February 2016 by Nicolas17 (talk | contribs) (Initial page, with some interesting things I found while reversing)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

MobileMail is the native email application on iOS.

Curious things

  • It appears to expose XPC services. This is quite unusual, normally XPC services would be in a different daemon, not in a GUI app.
  • Several class and method names mention "malls". I don't know what they are, but I suspect a pun: a "mall" as a group of "stores" (message stores).
  • Peek and pop is mostly implemented with public APIs. The one thing that isn't is the actions at the sides of the peek preview window. These are done using -[MessageViewController leadingPreviewAction] and -[MessageViewController trailingPreviewAction] (presumably overridden from UIViewController; I haven't looked at UIKit yet).