Skip to content

Commit 3ef7755

Browse files
author
杨帆
committed
增加网络请求与数据处理的基本写法
1 parent 03197ae commit 3ef7755

File tree

17 files changed

+1169
-0
lines changed

17 files changed

+1169
-0
lines changed

SwiftUI-Weather/SwiftUI-Weather.xcodeproj/project.pbxproj

+593
Large diffs are not rendered by default.

SwiftUI-Weather/SwiftUI-Weather.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>SwiftUI-Weather.xcscheme_^#shared#^_</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>0</integer>
11+
</dict>
12+
</dict>
13+
</dict>
14+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
//
2+
// AppDelegate.swift
3+
// SwiftUI-Weather
4+
//
5+
// Created by 杨帆 on 2020/3/24.
6+
// Copyright © 2020 杨帆. All rights reserved.
7+
//
8+
9+
import UIKit
10+
11+
@UIApplicationMain
12+
class AppDelegate: UIResponder, UIApplicationDelegate {
13+
14+
15+
16+
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
17+
// Override point for customization after application launch.
18+
return true
19+
}
20+
21+
// MARK: UISceneSession Lifecycle
22+
23+
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
24+
// Called when a new scene session is being created.
25+
// Use this method to select a configuration to create the new scene with.
26+
return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
27+
}
28+
29+
func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
30+
// Called when the user discards a scene session.
31+
// If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
32+
// Use this method to release any resources that were specific to the discarded scenes, as they will not return.
33+
}
34+
35+
36+
}
37+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "iphone",
5+
"size" : "20x20",
6+
"scale" : "2x"
7+
},
8+
{
9+
"idiom" : "iphone",
10+
"size" : "20x20",
11+
"scale" : "3x"
12+
},
13+
{
14+
"idiom" : "iphone",
15+
"size" : "29x29",
16+
"scale" : "2x"
17+
},
18+
{
19+
"idiom" : "iphone",
20+
"size" : "29x29",
21+
"scale" : "3x"
22+
},
23+
{
24+
"idiom" : "iphone",
25+
"size" : "40x40",
26+
"scale" : "2x"
27+
},
28+
{
29+
"idiom" : "iphone",
30+
"size" : "40x40",
31+
"scale" : "3x"
32+
},
33+
{
34+
"idiom" : "iphone",
35+
"size" : "60x60",
36+
"scale" : "2x"
37+
},
38+
{
39+
"idiom" : "iphone",
40+
"size" : "60x60",
41+
"scale" : "3x"
42+
},
43+
{
44+
"idiom" : "ipad",
45+
"size" : "20x20",
46+
"scale" : "1x"
47+
},
48+
{
49+
"idiom" : "ipad",
50+
"size" : "20x20",
51+
"scale" : "2x"
52+
},
53+
{
54+
"idiom" : "ipad",
55+
"size" : "29x29",
56+
"scale" : "1x"
57+
},
58+
{
59+
"idiom" : "ipad",
60+
"size" : "29x29",
61+
"scale" : "2x"
62+
},
63+
{
64+
"idiom" : "ipad",
65+
"size" : "40x40",
66+
"scale" : "1x"
67+
},
68+
{
69+
"idiom" : "ipad",
70+
"size" : "40x40",
71+
"scale" : "2x"
72+
},
73+
{
74+
"idiom" : "ipad",
75+
"size" : "76x76",
76+
"scale" : "1x"
77+
},
78+
{
79+
"idiom" : "ipad",
80+
"size" : "76x76",
81+
"scale" : "2x"
82+
},
83+
{
84+
"idiom" : "ipad",
85+
"size" : "83.5x83.5",
86+
"scale" : "2x"
87+
},
88+
{
89+
"idiom" : "ios-marketing",
90+
"size" : "1024x1024",
91+
"scale" : "1x"
92+
}
93+
],
94+
"info" : {
95+
"version" : 1,
96+
"author" : "xcode"
97+
}
98+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
3+
<dependencies>
4+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13104.12"/>
5+
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
6+
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
7+
</dependencies>
8+
<scenes>
9+
<!--View Controller-->
10+
<scene sceneID="EHf-IW-A2E">
11+
<objects>
12+
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
13+
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
14+
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
15+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
16+
<color key="backgroundColor" xcode11CocoaTouchSystemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
17+
<viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
18+
</view>
19+
</viewController>
20+
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
21+
</objects>
22+
<point key="canvasLocation" x="53" y="375"/>
23+
</scene>
24+
</scenes>
25+
</document>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
//
2+
// ContentView.swift
3+
// SwiftUI-Weather
4+
//
5+
// Created by 杨帆 on 2020/3/24.
6+
// Copyright © 2020 杨帆. All rights reserved.
7+
//
8+
9+
import SwiftUI
10+
import Combine
11+
import Foundation
12+
13+
// Model层
14+
// MARK: - Model
15+
struct Weather: Codable, Hashable, Identifiable {
16+
let id = UUID()
17+
let reason: String
18+
let result: Result
19+
let errorCode: Int
20+
21+
enum CodingKeys: String, CodingKey {
22+
case reason, result
23+
case errorCode = "error_code"
24+
}
25+
}
26+
27+
// MARK: - Result
28+
struct Result: Codable, Hashable, Identifiable {
29+
let id = UUID()
30+
let city: String
31+
let realtime: Realtime
32+
let future: [Future]
33+
}
34+
35+
// MARK: - Future
36+
struct Future: Codable, Hashable, Identifiable {
37+
let id = UUID()
38+
let date, temperature, weather: String
39+
let wid: Wid
40+
let direct: String
41+
}
42+
43+
// MARK: - Wid
44+
struct Wid: Codable, Hashable, Identifiable {
45+
let id = UUID()
46+
let day, night: String
47+
}
48+
49+
// MARK: - Realtime
50+
struct Realtime: Codable, Hashable, Identifiable {
51+
let id = UUID()
52+
let temperature, humidity, info, wid: String
53+
let direct, power, aqi: String
54+
}
55+
56+
57+
58+
59+
// Network层
60+
// 一个类专门用于负责API网络请求
61+
class API {
62+
// 每一个网络请求创建一个方法,参数为接收到的数据的逃逸闭包,这里数据为模型数组
63+
func getWeather(completion: @escaping ([Future]) -> ()) {
64+
guard let url = URL(string: "http://apis.juhe.cn/simpleWeather/query?city=%E8%8A%9C%E6%B9%96&key=25ca0b78d78b2dc7761bc2e4af6d82fc")
65+
else { return }
66+
67+
URLSession.shared.dataTask(with: url) { (data, _, _) in
68+
guard let data = data else { return }
69+
// 转Model
70+
let weather = try! JSONDecoder().decode(Weather.self, from: data)
71+
DispatchQueue.main.async {
72+
completion(weather.result.future)
73+
}
74+
}
75+
.resume()
76+
}
77+
}
78+
79+
// Data层
80+
// 利用Combine完成数据的绑定
81+
class DataStore: ObservableObject {
82+
83+
@Published var weathers: [Future] = []
84+
85+
init() {
86+
fetchBooks()
87+
}
88+
89+
func fetchBooks() {
90+
API().getWeather { (weathers) in
91+
self.weathers = weathers
92+
}
93+
}
94+
}
95+
96+
// View层
97+
struct ContentView: View {
98+
99+
@ObservedObject var store = DataStore()
100+
101+
var body: some View {
102+
NavigationView {
103+
// 没有数据时显示正在加载
104+
if store.weathers.count == 0 {
105+
106+
Text("数据加载中")
107+
.font(.title)
108+
.foregroundColor(.orange)
109+
.navigationBarTitle("数据展示")
110+
}
111+
else{
112+
List(store.weathers) { weather in
113+
// Row可以很复杂
114+
Text(weather.weather)
115+
}.navigationBarTitle("数据展示")
116+
}
117+
}
118+
}
119+
}
120+
121+
struct ContentView_Previews: PreviewProvider {
122+
static var previews: some View {
123+
ContentView()
124+
}
125+
}
+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSAppTransportSecurity</key>
6+
<dict>
7+
<key>NSAllowsArbitraryLoads</key>
8+
<true/>
9+
</dict>
10+
<key>CFBundleDevelopmentRegion</key>
11+
<string>$(DEVELOPMENT_LANGUAGE)</string>
12+
<key>CFBundleExecutable</key>
13+
<string>$(EXECUTABLE_NAME)</string>
14+
<key>CFBundleIdentifier</key>
15+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
16+
<key>CFBundleInfoDictionaryVersion</key>
17+
<string>6.0</string>
18+
<key>CFBundleName</key>
19+
<string>$(PRODUCT_NAME)</string>
20+
<key>CFBundlePackageType</key>
21+
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
22+
<key>CFBundleShortVersionString</key>
23+
<string>1.0</string>
24+
<key>CFBundleVersion</key>
25+
<string>1</string>
26+
<key>LSRequiresIPhoneOS</key>
27+
<true/>
28+
<key>UIApplicationSceneManifest</key>
29+
<dict>
30+
<key>UIApplicationSupportsMultipleScenes</key>
31+
<false/>
32+
<key>UISceneConfigurations</key>
33+
<dict>
34+
<key>UIWindowSceneSessionRoleApplication</key>
35+
<array>
36+
<dict>
37+
<key>UISceneConfigurationName</key>
38+
<string>Default Configuration</string>
39+
<key>UISceneDelegateClassName</key>
40+
<string>$(PRODUCT_MODULE_NAME).SceneDelegate</string>
41+
</dict>
42+
</array>
43+
</dict>
44+
</dict>
45+
<key>UILaunchStoryboardName</key>
46+
<string>LaunchScreen</string>
47+
<key>UIRequiredDeviceCapabilities</key>
48+
<array>
49+
<string>armv7</string>
50+
</array>
51+
<key>UISupportedInterfaceOrientations</key>
52+
<array>
53+
<string>UIInterfaceOrientationPortrait</string>
54+
<string>UIInterfaceOrientationLandscapeLeft</string>
55+
<string>UIInterfaceOrientationLandscapeRight</string>
56+
</array>
57+
<key>UISupportedInterfaceOrientations~ipad</key>
58+
<array>
59+
<string>UIInterfaceOrientationPortrait</string>
60+
<string>UIInterfaceOrientationPortraitUpsideDown</string>
61+
<string>UIInterfaceOrientationLandscapeLeft</string>
62+
<string>UIInterfaceOrientationLandscapeRight</string>
63+
</array>
64+
</dict>
65+
</plist>

0 commit comments

Comments
 (0)