im not able to display the values from this code .plz provide a code to display the mutabledictionay and a
- (void)viewDidLoad{
[super viewDidLoad];
mdict =[[NSMutableDictionary alloc]init];
[mdict setValue:@"abc" forKey:@"def"];
[mdict release];
}
-(void)display{
CFShow(mdict);
}