列出不同行上的单独IP地址

时间:2015-07-10 20:11:46

标签: ios swift uitableview ip

我有一个应用程序可以检索IPV4和IPV6地址,截至目前,这些地址都在UITableView中一起运行。如何在不同的行上列出它们?以下是我的代码。

import UIKit
import Foundation

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource{

    @IBOutlet weak var tableView: UITableView!

    func getIFAddresses() -> [String] {
        var addresses = [String]()

        // Get list of all interfaces on the local machine:
        var ifaddr : UnsafeMutablePointer<ifaddrs> = nil
        if getifaddrs(&ifaddr) == 0 {

            // For each interface ...
            for (var ptr = ifaddr; ptr != nil; ptr = ptr.memory.ifa_next) {
                let flags = Int32(ptr.memory.ifa_flags)
                var addr = ptr.memory.ifa_addr.memory

                // Check for running IPv4, IPv6 interfaces. Skip the loopback interface.
                if (flags & (IFF_UP|IFF_RUNNING|IFF_LOOPBACK)) == (IFF_UP|IFF_RUNNING) {
                    if addr.sa_family == UInt8(AF_INET) || addr.sa_family == UInt8(AF_INET6) {

                        // Convert interface address to a human readable string:
                        var hostname = [CChar](count: Int(NI_MAXHOST), repeatedValue: 0)
                        if (getnameinfo(&addr, socklen_t(addr.sa_len), &hostname, socklen_t(hostname.count),
                            nil, socklen_t(0), NI_NUMERICHOST) == 0) {
                                if let address = String.fromCString(hostname) {
                                    addresses.append(address)

                                }
                        }
                    }
                }
            }
            freeifaddrs(ifaddr)
        }

        return addresses

    }


    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 1
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        var cell = UITableViewCell()
        cell.textLabel?.lineBreakMode = NSLineBreakMode.ByWordWrapping
        cell.textLabel?.numberOfLines = 0
        cell.textLabel?.text = self.getIFAddresses()[indexPath.row]
        cell.textLabel?.text = getIFAddresses().description
        return cell
    }

1 个答案:

答案 0 :(得分:0)

使用

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return 1
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 1
}

您已经定义了一个表视图,其中一个部分包含一行, 和

cell.textLabel?.text = getIFAddresses().description

将整个数组(作为字符串)放入该单行的文本标签中。

您应该做的只是只调用一次和 将结果保存在属性中:

getIFAddresses()

然后定义一个包含一个部分和多行的表视图 有地址:

var addresses : [String] = []

override func viewDidLoad() {
    super.viewDidLoad()
    addresses = getIFAddresses()
}

最后,用数组中相应的地址填充每一行:

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return 1
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return  addresses.count
}