My Photo Sharing extension plans to use the same design assets (for navigation and for adding \'stamps / stickers\' to the photo).
As explained in App Sa
Assets can be added to a framework and reused in both app/extension. See "Loading Resources From A Framework" for more details.
public class AmazingView: UIView {
private func setupView() {
let bundle = Bundle(for: AmazingView.self)
guard let image = UIImage(named: "MyImage", in: bundle, compatibileWith: nil) else {
fatalError("Missing MyImage...")
}
}
}