Best Method to load animated gif image in webview
NSString *pathForFile = [[NSBundle mainBundle] pathForResource: @"ioshelpmate" ofType: @"gif"];
NSData *dataOfGif = [NSData dataWithContentsOfFile: pathForFile];
[Web_View loadData:dataOfGif MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];
Post a Comment