I'm develop app for iPhone & iPod and during developing app i used simulator 3.2(iPad) it runs perfectly but when I want to my app on simulator 3.1.3 it generate one error I remove this error by comment this line //self.clearsSelectionOnViewWillAppear = NO; and build project successfully but run app on simulator 3.1.3 when i clicking on button it goes on another screen on 3.2 simulator perfectly & crash on 3.1.3 what i do for come out from it.
|
|
The docs for UITableViewController clearly state that Before setting this, you can check for this property and then set it, otherwise your older code can just be supported as is, or you could do something more advanced and add the property in pre-3.2 environments. To check for the code, you do something like this:
|
|||||
|
|
Can you explain your question more clearly? My dear friend, You should read the Apple documentation more attentively, It is clearly stated that clearsSelectionOnViewWillAppear is a method available from iPhone OS 3.2 and later,you are trying to use it in 3.1.3. So the result is obvious. clearsSelectionOnViewWillAppear A Boolean value indicating if the controller clears the selection when the table appears. @property(nonatomic) BOOL clearsSelectionOnViewWillAppear Discussion The default value of this property is YES. When YES, the table view controller clears the table’s current selection when it receives a viewWillAppear: message. Setting this property to NO preserves the selection. Availability Available in iPhone OS 3.2 and later. Declared In UITableViewController.h Thanks |
||||
|
|