• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - Xcode 8 e Swift 3 中的可达性错误

[复制链接]
菜鸟教程小白 发表于 2022-12-13 13:55:17 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个大问题! 我正在尝试在使用 Xcode 8 Beta 3 和 Swift 的应用中实现可达性。

当用户有互联网(wifi 或 4G)时:背景变为绿色。如果您不使用背景,它将是红色的。如果用户在蜂窝中访问互联网,则背景将是黄色的。

代码运行良好,但是当我关闭 wifi 时,它就坏了

这是我的 github 项目 - 我的“单一 View 应用程序”

https://github.com/ewersoncastelo/testReachabilityXcode8



Best Answer-推荐答案


您需要修复方法选择器。像这样试试。

AppDelegate

import UIKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
    var window: UIWindow?
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
        reachability = Reachability.forInternetConnection()
        reachability.startNotifier()
        return true
    }
    func applicationWillResignActive(_ application: UIApplication) {
        // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
        // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
    }
    func applicationDidEnterBackground(_ application: UIApplication) {
        // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    }
    func applicationWillEnterForeground(_ application: UIApplication) {
        // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
    }
    func applicationDidBecomeActive(_ application: UIApplication) {
        // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    }
    func applicationWillTerminate(_ application: UIApplication) {

    }
}

View Controller

import UIKit
import SystemConfiguration

var reachability = Reachability()

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        NotificationCenter.default.addObserver(self, selector: #selector(reachabilityStatusChanged(_), name: .reachabilityChanged, object: nil)

    }

    func updateInterfaceWithCurrent(networkStatus: NetworkStatus) {
        switch networkStatus {
        case NotReachable:
            view.backgroundColor = .red
            print("No Internet")
        case ReachableViaWiFi:
            view.backgroundColor = .green
            print("Reachable Internet")
        case ReachableViaWWAN:
            view.backgroundColor = .yellow
            print("Reachable Cellular")
        default:
            return
        }

    }
    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)
        //
        updateInterfaceWithCurrent(networkStatus: reachability.currentReachabilityStatus())

    }
    func reachabilityStatusChanged(_ sender: NSNotification) {
        guard let networkStatus = (sender.object as? Reachability)?.currentReachabilityStatus() else { return }
        updateInterfaceWithCurrent(networkStatus: networkStatus)
    }
    override func viewWillDisappear(_ animated: Bool) {
        NotificationCenter.default.removeObserver(self, name: .reachabilityChanged, object: nil)
    }
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
}

关于ios - Xcode 8 e Swift 3 中的可达性错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38779648/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap