Skip to content

Commit

Permalink
Fixed bugs for Xcode 13.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanvorobei committed Jul 22, 2021
1 parent e17712f commit 4c19b20
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
"repositoryURL": "https://github.com/ivanvorobei/SparrowKit",
"state": {
"branch": null,
"revision": "fdac977986b64f240e6e72f00b499503d327bb31",
"version": "3.0.7"
"revision": "d1a2d489417f98620558da08ddcf44a9d53e58f3",
"version": "3.2.0"
}
},
{
"package": "SPDiffable",
"repositoryURL": "https://github.com/ivanvorobei/SPDiffable",
"state": {
"branch": null,
"revision": "2350c8a491fcc29ef833509905c5c9a2a3b51e7e",
"version": "1.2.2"
"revision": "884198fb29a339156b824483bc09e2b488d27e28",
"version": "1.4.1"
}
}
]
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion Example App/iOS Example/App/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class AppDelegate: SPAppWindowDelegate {

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
let rootController = PresetsController().wrapToNavigationController(prefersLargeTitles: false)
makeKeyAndVisible(rootController, tint: .systemBlue)
makeKeyAndVisible(viewController: rootController, tint: .systemBlue)
return true
}
}
2 changes: 1 addition & 1 deletion SPAlert.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'SPAlert'
s.version = '3.2.4'
s.version = '3.3.0'
s.summary = 'Native alert from Apple Music & Feedback. Contains Done, Heart & Message and other presets.'
s.homepage = 'https://github.com/ivanvorobei/SPAlert'
s.source = { :git => 'https://github.com/ivanvorobei/SPAlert.git', :tag => s.version }
Expand Down
1 change: 1 addition & 0 deletions Sources/SPAlert/Extensions/SwiftUIExtension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import SwiftUI

@available(iOS 13.0, *)
@available(iOSApplicationExtension, unavailable)
extension View {

public func spAlert(
Expand Down
1 change: 1 addition & 0 deletions Sources/SPAlert/SPAlert.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import UIKit
SPAlert: Acess level. Here you get ready-use methods.
Recomended use it.
*/
@available(iOSApplicationExtension, unavailable)
public enum SPAlert {

/**
Expand Down
1 change: 1 addition & 0 deletions Sources/SPAlert/SPAlertView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import UIKit

Recomended call `SPAlert` and choose style func.
*/
@available(iOSApplicationExtension, unavailable)
open class SPAlertView: UIView {

// MARK: - Properties
Expand Down

0 comments on commit 4c19b20

Please sign in to comment.