-4
テーブルビューセルでイメージビューにイメージを表示したいとします。 イメージは、そのイメージへのリンクがJSONファイルからアクセスするテキスト形式のファイル(ローカル/サーバー)に保存されます。 イメージビュー形式でこれらのリンクを変換してアクセスする方法。 これまでのところ私は、JSONファイルからデータを取得することができる午前: imageviewcell.swift:のViewControllerでスウィフト3.0を使用してテキストをイメージビューに変換する方法
@IBOutlet weak var songimageview: UIImageView!
@IBOutlet weak var imagenameLabel: UILabel!
:
func numberOfSections(in tableView: UITableView) -> Int
{
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return arrDict.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell: ImageTableViewCell! = tableView.dequeueReusableCell(withIdentifier: "Cell") as! imageTableViewCell
let strTitle : NSString=(arrDict[(indexPath as NSIndexPath).row] as AnyObject).value(forKey: "name") as! NSString
cell.imagenameLabel.text = strTitle as String
let imagedisplay : NSString=(arrDict[(indexPath as NSIndexPath).row] as AnyObject).value(forKey: "Imagelink") as! NSString
**画像が表示されますので、ImageViewのにこのimagedisplayを変換する方法テーブルビューのセル。
'STRING'>' URL'、 'URL'>'データ:アプリのメインバンドルから
'、'データ '>' UIImage'、 'UIImage'>' UIImageView' – vadian
これは「Xのやり方を教えてください」サイトではありません。これは、コードでデバッグのヘルプを得ることができるサイトです。あなたの検索語は 'UIGraphicsBeginImageContextWithOptions' –
あなたが試したことを示していますか? – Matt