문제

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

-(void)SetValuesInUserInterface:(NSDictionary *)Dic

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

도움이 되었습니까?

해결책 2

Try like this:

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

다른 팁

Try this :

 [self SetValuesInUserInterface:dict]; 

You can call your Method like this :

[self SetValuesInUserInterface:YOURDICTIONARY];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top