I have an NSDictionary
that registers this:
address = "30 East 23rd Street"; address1 = "30 East 23rd Street"; address2 = ""; age = 32; alert = ""; "blood_pressure_1" = ""; "blood_pressure_2" = ""; bmi = "";
I want to create a new NSDictionary that contains only a few keys to the old one, for example, only age
, bmi
and alert
. How can i do this?
user594161
source share