2017-04-07 47 views
1

这是我的情况,(请注意我开始在iOS开发:))。在swift/ios上异步加载映像?

我有一个feed列表,其中数据是从firebase进行beign提取的,每个提要在表格视图中获取图像和标题。

我正在寻找一种方式,即如果用户回来没有任何互联网连接的应用程序,仍然显示这些数据,已显示在那之前。

目前,我用这个来显示数据:

import UIKit 
import FirebaseAuth 
import FirebaseDatabase 
import FirebaseStorage 
import SwiftKeychainWrapper 
import SwiftyJSON 

var posts = [Post]() 
var selectedIndexPath: Int = 10 

class FeedVC: UIViewController, UITableViewDataSource, UIImagePickerControllerDelegate, UINavigationControllerDelegate, UITableViewDelegate { 

@IBOutlet weak var feedTableView: UITableView! 

private var readPosts: ObserveTask? 

override func viewDidLoad() { 
    super.viewDidLoad() 

    feedTableView.dataSource = self 
    feedTableView.delegate = self 

    readPosts = Post.observeList(from: Post.parentReference.queryOrdered(byChild: "privacy").queryEqual(toValue: false)) 

    { 
     observedPosts in 

     posts = observedPosts.reversed() 
     self.feedTableView.reloadData() 
    } 
} 

override var prefersStatusBarHidden: Bool { 
    return true 
} 

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

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

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { 
    return UITableViewAutomaticDimension 
} 

func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat { 
    return UITableViewAutomaticDimension 
} 


func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 
    let cell = self.feedTableView.dequeueReusableCell(withIdentifier: "MessageCell")! as UITableViewCell 


let imageView = cell.viewWithTag(1) as! UIImageView 



    let titleLabel = cell.viewWithTag(2) as! UILabel 
    let linkLabel = cell.viewWithTag(3) as! UILabel 

    titleLabel.text = posts[indexPath.row].title 
    titleLabel.numberOfLines = 0 

    linkLabel.text = posts[indexPath.row].link 
    linkLabel.numberOfLines = 0 



    Storage.getImage(with: posts[indexPath.row].imageUrl){ 
     postPic in 
     imageView.image = postPic 
    } 

    return cell 

} 


func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 
    guard posts[indexPath.row].title != "COMING SOON" else { 
     return 
    } 
      selectedIndexPath = indexPath.row 
      self.performSegue(withIdentifier: "push", sender: self) 
      self.feedTableView.reloadData() } 


} 

这怎么可能呢?我一直在寻找NSUR的功能,这是一个好的开始?

非常感谢您的时间!

+0

你试过我的回答吗? –

回答

1

使用核心数据存储图像或

如果您可能不希望存储核心数据这些图片,因为如果数据集变得太大,这会影响性能。最好将图像写入文件。

NSData *pngData = UIImagePNGRepresentation(image); 

这会提取所拍摄图像的PNG数据。从这里,你可以把它写到一个文件中:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 
NSString *documentsPath = [paths objectAtIndex:0]; //Get the docs directory 
NSString *filePath = [documentsPath stringByAppendingPathComponent:@"image.png"]; //Add the file name 
[pngData writeToFile:filePath atomically:YES]; //Write the file 

以后读它的方式是一样的。构建路径就像我们刚才上面那样的话:

NSData *pngData = [NSData dataWithContentsOfFile:filePath]; 
UIImage *image = [UIImage imageWithData:pngData]; 

你可能会想要做的是使,为您创建路径字符串,因为你不想到处散落的代码的方法。它可能看起来像这样:

- (NSString *)documentsPathForFileName:(NSString *)name 
{ 
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES); 
    NSString *documentsPath = [paths objectAtIndex:0]; 

    return [documentsPath stringByAppendingPathComponent:name]; 
} 

希望有帮助。