我正在开发一个基本的闹钟应用程序。这就是主要故事板的样子
我已将自定义视图控制器添加为单独的xib文件,如下所示
这就是界面运行时的样子。 (后台的主ViewController和前台的CustomAlertController)
它包含日期选择器。我的意思是,当用户点击主故事板中的addButton时,customAlertViewController将出现,用户可以选择添加为警报的日期和时间。当用户点击customAlertViewController中的Add时,日期和时间应该传回一个数组并添加到主故事板视图控制器中的tableView。
这是我到目前为止编写的代码:
TableView
的代码 func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = UITableViewCell()
let adate = alarmDate[indexPath.row].date
print(adate)
cell.textLabel?.text = String(adate)
return cell
}
警报类
中的代码import Foundation
class Alarm{
var date : NSDate
init (date : NSDate){
self.date = date
}
}
CustomAlertViewController
中的代码您无需查看整个代码。我已经尝试过使用prepare for segue,但我想当CustomAlertviewcontroller在不同的故事板中时,这不是一个可行的解决方案(?)
我采用的下一个方法是以某种方式将日期传递给viewDidDisappear方法中的Alarm类实例,然后将其附加到alarmDate数组(在ViewController中声明)。
这是我陷入困境的地方。 viewDidDisappear中的print语句输出1到控制台,显然是因为附加了日期。但是一旦CustomAlertViewController退出并且viewController又返回,则alarmDate数组将重置,并且表视图中不会显示任何值。我试图解决这个问题但无济于事。
我意识到如果我在故事板中使用了一个新的视图控制器来代替单独的xib文件,我可以轻松地获得相同的结果。
class CustomAlertViewController: UIViewController {
//MARK: - Properties
@IBOutlet weak var customAlertView: UIView!
@IBOutlet weak var alarmPicker: UIDatePicker!
var destinationDate = NSDate()
override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: NSBundle?) {
super.init(nibName : nibNameOrNil, bundle : nibBundleOrNil)
self.modalPresentationStyle = .OverCurrentContext
}
convenience init(){
self.init(nibName : "CustomAlertViewController", bundle: nil)
}
required init?(coder aDecoder: NSCoder) {
fatalError("NSCoding not supported")
}
//MARK: - Methods
override func viewDidLoad() {
super.viewDidLoad()
print ("View loaded")
self.customAlertView.layer.borderColor = UIColor.darkGrayColor().CGColor
self.customAlertView.layer.borderWidth = 2
self.customAlertView.layer.cornerRadius = 8
view.backgroundColor = UIColor(white: 1, alpha: 0.7)
view.opaque = false
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
override func viewDidDisappear(animated: Bool) {
let vc = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("table") as! ViewController
let alarm = Alarm( date : destinationDate)
vc.alarmDate.append(alarm)
// vc.alarmData.reloadData()
print(vc.alarmDate.count)
}
// MARK: - Navigation
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
let destinationVC = segue.destinationViewController as! ViewController
let alarm = Alarm( date : destinationDate)
destinationVC.alarmDate.append(alarm)
destinationVC.alarmData.reloadData()
print(destinationVC.alarmDate.count)
}
//MARK: - Actions
@IBAction func cancelButton(sender: AnyObject) {
self.presentingViewController!.dismissViewControllerAnimated(true, completion: nil)
}
@IBAction func addButton(sender: AnyObject) {
//Code to correct the time zone difference
let sourceDate = alarmPicker.date
let sourceTmeZone = NSTimeZone(abbreviation: "GMT")
let destinationTimeZone = NSTimeZone.systemTimeZone()
let sourceOffset = sourceTmeZone!.secondsFromGMTForDate(sourceDate)
let destinationOffset = destinationTimeZone.secondsFromGMTForDate(sourceDate)
let interval : Double
interval = Double(destinationOffset - sourceOffset)
destinationDate = NSDate.init(timeInterval: interval, sinceDate: sourceDate)
self.presentingViewController!.dismissViewControllerAnimated(true, completion: nil)
}
}
我缺乏使用Swift的经验,很乐意感谢任何帮助。 PS我正在使用Swift 2.3
答案 0 :(得分:3)
您可以使用协议:
protocol DateShare {
func share(date: NSDate)
}
您可以在任何控制器范围之外的任何地方声明。 然后你添加一个
delegate: DateShare!
CustomAlertVC中的属性。在VC中,当您初始化CustomAlert时,添加以下行:
customAlert.delegate = self
当然,您添加一个符合VC中DateShare协议的扩展名,如下所示:
extension ViewController: DateShare {
func share(date: NSDate) {
// do whatever you can for that the date can be displayed in table view
alarmDates.append(date) // if I understood it all ?
}
}
最后,您在addButton(sender:_)范围中添加此行:
@IBOutlet func addButton(sender: UIButton?) {
// generate inputDate here
delegate.share(date: inputDate)
}
这应该成功。