Although there is not much context in your original post, I think it might work ...
You can set a global variable in the main subtitle, which you would like to configure in the content based on what I understood.
var customizationObject = CustomFilters()
and for CustomFilters do something like:
class CustomFilters {
var filter1: String?
var filter2: String?
}
and in the prepareForSegue command, you pass the object to the destination view controller to set the filters.
override func prepareForSegue(segue: UIStoryboardSegue!, sender: AnyObject!) {
if (segue.identifier == "Load View") {
}
}
, viewWillAppear viewDidLoad ( ), , .