19 lines
388 B
Swift
19 lines
388 B
Swift
//
|
|
// ShareViewController.swift
|
|
// SolarShare
|
|
//
|
|
// Created by LittleSheep on 2024/12/15.
|
|
//
|
|
|
|
import receive_sharing_intent
|
|
|
|
class ShareViewController: RSIShareViewController {
|
|
|
|
// Use this method to return false if you don't want to redirect to host app automatically.
|
|
// Default is true
|
|
override func shouldAutoRedirect() -> Bool {
|
|
return true
|
|
}
|
|
|
|
}
|