Question

how to call this method in some other method using [self]:

-(void)SetValuesInUserInterface:(NSDictionary *)Dic

I trid [self SetValuesInUserInterface:) but this doesn't work

Was it helpful?

Solution 2

Try like this:

[self performSelector:@selector(SetValuesInUserInterface:) withObject:nil afterDelay:0.0];

OTHER TIPS

Try this :

 [self SetValuesInUserInterface:dict]; 

You can call your Method like this :

[self SetValuesInUserInterface:YOURDICTIONARY];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top