You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In these methods:
-(void) apiGETCallWithURL:(NSString*)url
indicatorVC:(CSBaseViewController*)vc
toShowIndicator:(BOOL)toShow
toHideIndicator:(BOOL)toHide
completition:(apiCallFinish)finish
In CSApiManager.m
In these methods:
-(void) apiGETCallWithURL:(NSString*)url
indicatorVC:(CSBaseViewController*)vc
toShowIndicator:(BOOL)toShow
toHideIndicator:(BOOL)toHide
completition:(apiCallFinish)finish
-(void) apiPOSTCallWithUrl:(NSString*)url
parameters:(NSDictionary*)params
indicatorVC:(CSBaseViewController*)vc
toShowIndicator:(BOOL)toShow
toHideIndicator:(BOOL)toHide
completition:(apiCallFinish)finish {
encode the url string:
url = [url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
In order to avoid app crash by containing special characters in url such as Chinese.
The text was updated successfully, but these errors were encountered: