OIDExternalUserAgentCatalyst.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*! @file OIDExternalUserAgentCatalyst.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2019 The AppAuth Authors. All Rights Reserved.
  5. @copydetails
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. #import <TargetConditionals.h>
  17. #if TARGET_OS_IOS || TARGET_OS_MACCATALYST
  18. #import <UIKit/UIKit.h>
  19. #import "OIDExternalUserAgent.h"
  20. NS_ASSUME_NONNULL_BEGIN
  21. /*! @brief A Catalyst specific external user-agent that uses `ASWebAuthenticationSession` to
  22. present the request.
  23. */
  24. API_AVAILABLE(macCatalyst(13)) API_UNAVAILABLE(ios)
  25. @interface OIDExternalUserAgentCatalyst : NSObject<OIDExternalUserAgent>
  26. /*! @internal
  27. @brief Unavailable. Please use @c initWithPresentingViewController:
  28. */
  29. - (nonnull instancetype)init NS_UNAVAILABLE;
  30. /*! @brief The designated initializer.
  31. @param presentingViewController The view controller from which to present the
  32. \SFSafariViewController.
  33. */
  34. - (nullable instancetype)initWithPresentingViewController:
  35. (UIViewController *)presentingViewController
  36. NS_DESIGNATED_INITIALIZER;
  37. @end
  38. NS_ASSUME_NONNULL_END
  39. #endif // TARGET_OS_IOS || TARGET_OS_MACCATALYST