Swift /如何创建array.count的int

时间:2016-03-13 12:20:05

标签: ios swift

我正在使用xml解析器从博客下载信息。我需要int已下载了多少博客主页。共有4个。

       var posts = [EventPosts]()

       func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
            print(posts.count)
            return posts.count
       }

打印0和4。

可是:

        var intFromPosts: Int {
        return Int(posts.count)
        }

        override func viewDidLoad() {
        print(intFromPosts) 
        }

始终为零。如何从array.count获取int?非常感谢帮助。

0 个答案:

没有答案