Sorry if it is not a standard question, but now your solutions can help me out. In my app, I have two classes: ClassA and ClassB. ClassB has a table view in it. I am using a query to populate the table view in ClassB, but the column name through which I have to query is what I get from ClassA, which I want to pass to ClassB and to perform the query and populate the table view. Can I pass a parameter to viewDidLoad or viewWillAppear? These get called when the view loads. Or is there any other method to do so?
|
|
||||
|
|
|
Why don't you declare a property for that?
and synthesize it in the implementation. When you are creating
Make use of this parameter in |
|||||
|
|
You normally create a property on the target class and populated it with whatever you need to pass along, then you push the other class onto the stack, or tell it to update. |
|||||
|
|
I'd recommend you write a setter method for your query. Once Class B is instantiated you can call the method any time to update the data set and the table view. You'll need to adjust the parameters to handle whatever form of representation you'll be using for your query. ClassB.h
ClassB.m
ClassA.m
|
|||||||
|
|
You pass the value to your class or object constructor. You then save the value to a property in that class. You then access that property from the view did load, or your other events. This is more a general programming concept, than anything related to objective c, the iPad, etc. So, in your header file, you define a property. Then you synthesize that property the c file. Then you set the property in the constructor. Then you access the property in your view did load event. |
|||
|
|