forked from SDWebImage/SDWebImageSwiftUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support AnimatedImage on watchOS - Using WatchKit bridge (SDWebImage#22)
* Temp for watchOS AnimatedImage support, using massive private API, still contains small issues * Update the hack for wacthKit experienment, fix the retain cycle issue that cause WKInterfaceImage not dealloc * Solve the merge conflict and try again * Add support for contentMode * Fix the SDAnimatedImageInterface first appear shows empty issues * Fix the scale factor support for SDAniamtedImageInterface * Fix the compile issue on other platforms * Stop animtiong when dismantle for watchOS AnimatedImage * Fix the issue that stopAnimating does not stop :) * Fix the warning because of Apple's bug * Use macro to integrate the watchOS Animation solution * Refactory code to fix that calling sd_setImage(with:) multiple times issues * Support to custom loop count on watchOS AnimatedImage * Fix the CocoaPods issues which does not have umbrella headers * Update some of the documentations * Try to solve the SwiftPM issue because it does not support mixed Objective-C and Swift code, really suck, Apple :) * Fix travis CI script to only build Carthage. Swift cli build can not works on Objective-C code import syntax, but works on Xcode
- Loading branch information
1 parent
f056456
commit 7e21926
Showing
13 changed files
with
474 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "SDWebImage/SDWebImage" "5.1.0" | ||
github "SDWebImage/SDWebImage" "5.2.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
Example/SDWebImageSwiftUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.