Skip to content

Commit

Permalink
Merge pull request #185 from thingineeer/#184---Xcode-15-버전-코드-변경-사항
Browse files Browse the repository at this point in the history
[Fix] #184 - Xcode 15 버전 코드 수정
  • Loading branch information
thingineeer authored Sep 21, 2023
2 parents 84c5f59 + eb48206 commit 529943a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Runnect-iOS/Runnect-iOS/Global/Utils/setImage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public extension UIImageView {

private func setNewImage(with urlString: String, placeholder: String? = "img_placeholder", completion: ((UIImage?) -> Void)? = nil) {
guard let url = URL(string: urlString) else { return }
let resource = ImageResource(downloadURL: url, cacheKey: urlString)
let resource = Kingfisher.KF.ImageResource(downloadURL: url, cacheKey: urlString)
let placeholderImage = UIImage(named: "img_placeholder")
let placeholder = placeholderImage

Expand Down
5 changes: 5 additions & 0 deletions Runnect-iOS/Runnect-iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
Expand Down

0 comments on commit 529943a

Please sign in to comment.