嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
在 2019 年的 WWDC 大會上,Combine 框架登場,它是蘋果公司新推出的“響應式”框架,用來處理隨時間變化的事件。你可以用 Combine 來統一和簡化像代理、通知、定時器、完成回調這樣的代碼。在 iOS 平臺上,之前也有可用的第三方響應式框架,但現在蘋果開發了自己的框架。
在本教程中,你將學到:
- 使用 Publisher 和 Subscriber。
- 處理事件流。
- 用 Combine 框架中的方式使用 Timer。
- 確定在項目中使用 Combine 的時機。
我們通過優化 FindOrLose 來學習這些核心概念。FindOrLose 是一個遊戲,它的玩法是:在四張圖中,有一張圖與其他三張圖不同,你需要快速辨別出這張圖。
準備好探索 iOS 中 Combine 的奇妙世界嗎?是時候開始了!
FindOrLose
├── final
│ ├── FindOrLose
│ │ ├── AppDelegate.swift
│ │ ├── Assets.xcassets
│ │ │ ├── AppIcon.appiconset
│ │ │ │ ├── Contents.json
│ │ │ │ ├── Icon1024.png
│ │ │ │ ├── Icon20.png
│ │ │ │ ├── Icon20@2x.png
│ │ │ │ ├── Icon29.png
│ │ │ │ ├── Icon29@2x.png
│ │ │ │ ├── Icon40.png
│ │ │ │ ├── Icon40@2x.png
│ │ │ │ ├── Icon76.png
│ │ │ │ ├── Icon76@2x.png
│ │ │ │ ├── Icon83.5@2x.png
│ │ │ │ ├── icon-app-20@2x.png
│ │ │ │ ├── icon-app-20@3x.png
│ │ │ │ ├── icon-app-29@2x.png
│ │ │ │ ├── icon-app-29@3x copy.png
│ │ │ │ ├── icon-app-40@2x.png
│ │ │ │ ├── icon-app-40@3x.png
│ │ │ │ ├── icon-app-60@2x.png
│ │ │ │ └── icon-app-60@3x.png
│ │ │ ├── Contents.json
│ │ │ ├── colors
│ │ │ │ ├── Contents.json
│ │ │ │ ├── rw-dark.colorset
│ │ │ │ │ └── Contents.json
│ │ │ │ ├── rw-green.colorset
│ │ │ │ │ └── Contents.json
│ │ │ │ └── rw-light.colorset
│ │ │ │ └── Contents.json
│ │ │ └── launch-assets
│ │ │ ├── Contents.json
│ │ │ ├── rw-logo.imageset
│ │ │ │ ├── Contents.json
│ │ │ │ └── Razewarelogo_1024.png
│ │ │ └── rwdevcon-bg.imageset
│ │ │ ├── Contents.json
│ │ │ └── rwdevcon-bg.png
│ │ ├── Base.lproj
│ │ │ ├── LaunchScreen.storyboard
│ │ │ └── Main.storyboard
│ │ ├── Game
│ │ │ ├── GameError.swift
│ │ │ ├── GameState.swift
│ │ │ └── GameViewController.swift
│ │ ├── Info.plist
│ │ ├── Models
│ │ │ ├── ImageType.swift
│ │ │ └── RandomImageResponse.swift
│ │ └── Network
│ │ ├── ImageDownloader.swift
│ │ └── UnsplashAPI.swift
│ └── FindOrLose.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ ├── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ │ └── xcuserdata
│ │ ├── critz.xcuserdatad
│ │ │ └── UserInterfaceState.xcuserstate
│ │ ├── pp.xcuserdatad
│ │ │ └── UserInterfaceState.xcuserstate
│ │ └── richard.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
│ └── xcshareddata
│ ├── IDETemplateMacros.plist
│ └── xcschemes
│ └── FindOrLose.xcscheme
└── starter
├── FindOrLose
│ ├── AppDelegate.swift
│ ├── Assets.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ ├── Contents.json
│ │ │ ├── Icon1024.png
│ │ │ ├── Icon20.png
│ │ │ ├── Icon20@2x.png
│ │ │ ├── Icon29.png
│ │ │ ├── Icon29@2x.png
│ │ │ ├── Icon40.png
│ │ │ ├── Icon40@2x.png
│ │ │ ├── Icon76.png
│ │ │ ├── Icon76@2x.png
│ │ │ ├── Icon83.5@2x.png
│ │ │ ├── icon-app-20@2x.png
│ │ │ ├── icon-app-20@3x.png
│ │ │ ├── icon-app-29@2x.png
│ │ │ ├── icon-app-29@3x copy.png
│ │ │ ├── icon-app-40@2x.png
│ │ │ ├── icon-app-40@3x.png
│ │ │ ├── icon-app-60@2x.png
│ │ │ └── icon-app-60@3x.png
│ │ ├── Contents.json
│ │ ├── colors
│ │ │ ├── Contents.json
│ │ │ ├── rw-dark.colorset
│ │ │ │ └── Contents.json
│ │ │ ├── rw-green.colorset
│ │ │ │ └── Contents.json
│ │ │ └── rw-light.colorset
│ │ │ └── Contents.json
│ │ └── launch-assets
│ │ ├── Contents.json
│ │ ├── rw-logo.imageset
│ │ │ ├── Contents.json
│ │ │ └── Razewarelogo_1024.png
│ │ └── rwdevcon-bg.imageset
│ │ ├── Contents.json
│ │ └── rwdevcon-bg.png
│ ├── Base.lproj
│ │ ├── LaunchScreen.storyboard
│ │ └── Main.storyboard
│ ├── Game
│ │ ├── GameState.swift
│ │ └── GameViewController.swift
│ ├── Info.plist
│ ├── Models
│ │ ├── ImageType.swift
│ │ └── RandomImageResponse.swift
│ └── Network
│ ├── ImageDownloader.swift
│ └── UnsplashAPI.swift
└── FindOrLose.xcodeproj
├── project.pbxproj
├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ ├── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
│ └── xcuserdata
│ ├── critz.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
│ ├── pp.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
│ └── richard.xcuserdatad
│ └── UserInterfaceState.xcuserstate
└── xcshareddata
├── IDETemplateMacros.plist
└── xcschemes
└── FindOrLose.xcscheme
48 directories, 95 files