#json #swift #mobile-safari
#json #быстрый #мобильный-safari #swift
Вопрос:
Привет, я хотел написать простое приложение, которое блокирует веб-сайты в safari. Я создал новую цель (расширение для блокировки содержимого), и поэтому он создал этот файл blockerList.json в новой папке blocker. Итак, я хотел прочитать сайты из этого файла в массив и показать их в виде таблицы, а также добавить новые сайты или удалить сайты из blockerList.json. Вот мой код
import UIKit
import Cartography
import SwiftyJSON
import SafariServices
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
var tableView: UITableView = UITableView()
var arr = [String]()
override func viewDidLoad() {
super.viewDidLoad()
super.view.backgroundColor = UIColor.red;
//let blockerIdentifier = "com.appsfoundation.ContentBlocker.Blocker"
//SFContentBlockerManager.
print("--------------------")
//print(FileManager.default.c)
//Bundle(for: ContentBlockerRequestHandler)
print("--------------------")
//Bundle.main.url
//Bundle.main.pa
//FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: <#T##String#>)
// print(Bundle.main.url(forResource: "blocker/blockerList", withExtension: "json"))
// Bundle.init(for: ContentBlockerRequestHandler)
// print(Bundle.main.paths(forResourcesOfType: "blockerList.json", inDirectory: "blocker"))
if let path = Bundle.main.path(forResource: "blockerList", ofType: "json", inDirectory: "./../blocker"){
guard let data = NSData(contentsOf: URL(fileURLWithPath: path)) else{
return
}
let jsonObj = JSON(data: data as Data)
print(jsonObj)
if jsonObj != JSON.null {
print("jsonData:(jsonObj)")
} else {
print("Could not get json from file, make sure that file contains valid json.")
}
//
}
arr.append("Hello")
arr.append("my name is ")
let button = UIButton();
button.setTitle(" ", for: .normal)
button.addTarget(self, action: #selector(buttonPressed), for: .touchUpInside)
// button.titleLabel?.text = " "
self.view.addSubview(tableView)
self.view.addSubview(button)
tableView.delegate = self
tableView.dataSource = self
constrain(tableView, view, button){
tableView, view, button in
tableView.width == view.width
tableView.height == view.height - 50
tableView.top == view.top
tableView.right == view.right
button.height == 50
button.width == view.width
button.top == view.bottom - 50
button.right == view.right
}
//arr = Array()
// Do any additional setup after loading the view, typically from a nib.
// self.view.backgroundColor = UIColor.redColor();
}
func buttonPressed(){
// print("I was pressed")
//var alert = UIAlertView();
//alert.title = "Enter a website";
// alert.alertViewStyle = UIAlertViewStyle.plainTextInput
// alert.addB
//alert.addButton(withTitle: "Done")
//alert.addButton(withTitle: "Cancel")
var alert = UIAlertController(title: "Alert", message: "Enter website that you would like to block", preferredStyle: UIAlertControllerStyle.alert)
alert.addTextField { (text) in
text.placeholder = "http://";
}
let action = UIAlertAction(title: "Done", style: UIAlertActionStyle.default) { (action: UIAlertAction) in
print("I am working")
}
let action2 = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel) { (UIAlertAction) in
self.dismiss(animated: true, completion: nil)
}
alert.addAction(action)
alert.addAction(action2)
self.present(alert, animated: true, completion: nil)
//self.viewC
//presentedViewController(alert)
//alert.addA
// alert.show()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return arr.count
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat
{
return 50
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
// Code here
let cell = UITableViewCell(style: UITableViewCellStyle.default, reuseIdentifier: "cell")
//cell.t
//let cell1 = tableView.dequeueReusableCell(withIdentifier: "cell")
//cell.textLabel?.text = "Hello"
cell.textLabel?.text = arr[(indexPath as NSIndexPath).item]
return cell;
}
}
Но проблема в том, что я не могу получить доступ к файлу blockerList.json. Возможно ли это вообще? Или я делаю что-то совершенно неправильное. Я ищу это в течение 3 дней, и у меня нет идей, как решить эту проблему. Заранее спасибо за любую помощь.
Ответ №1:
Я решил свою проблему, если у вас есть эта проблема, оказывается, что этот json не добавлен на этап сборки. Итак, вам нужно перейти к вашему проекту-> Этап сборки-> Копировать файлы-> добавить blockerList.json сюда. Надеюсь, это поможет, если у вас такая же проблема 🙂