I have a NSMutableArray like this.
2015-09-22 10:12:22.739 amigo[17198:6080591] Headers ************************ (
{
BidAcceptanceRide = 0;
BidRejectionRide = 1;
BidRide = 1;
BookingCancellationByBuyer = 0;
BookingCancellationBySeller = 0;
BookingConfirmation = 3;
BookingRemainder = 0;
Review = 0;
TotalNotification = 5;
}
)
What I want to do is check these each key value pairs and if the value is greater than 0 I want to add its key to another array. How can I do this? Please help me.
Thanks