There is a table, it is filled from the list *.plist
, which is based on dictionaries ( NSDictionary
),
about the same format:
<array> <dict> <key>name</key> <string>Example1</string> <key>type</key> <string>1</string> </dict> <dict> <key>name</key> <string>Example2</string> <key>type</key> <string>2</string> </dict> </array>
Question: is it possible to filter by clicking on one of the UISegmentedControl
buttons
table and display only data with type "1"?
PS: with the withdrawal of all data from the list there are no problems.