Pavel Akhrameev

Results 10 comments of Pavel Akhrameev

I've done it it in my fork

Look: https://github.com/Akhrameev/MGSwipeTableCell/commit/3bf11f2f362848d91efac3ca0dc7c2fdb5e91439

Well, I use my fork in production: I'll be happy to help you!)

@kiranruth I've updated my fork: rebased all necessary code to a new master branch on top of current master 1.5.6 (previous code is available in master/akhrameev branch). After redesigning app...

You can change container view for your _hud to _webView, so cancel button will be acceptable for user. I use this method: - (void)webViewDidStartLoad:(UIWebView *)webView { [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES]; _hud...

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType { NSURL *URL = [request URL]; if ([[URL absoluteString] isEqualToString:@"http://api.vk.com/blank.html#error=access_denied&error_reason=user_denied&error_description=User%20denied%20your%20request"]) { if (self.delegate && [self.delegate respondsToSelector:@selector(authorizationDidCanceled)]) { [self.delegate authorizationDidCanceled]; } return NO; } NSString...

Or something like this: if (!response) { if ([self.delegate respondsToSelector:@selector(vkontakteDidFailedWithError:)]) { NSError *error = [NSError errorWithDomain:@"http://api.vk.com/method" code:666 userInfo:nil]; [self.delegate vkontakteDidFailedWithError:error]; } return; }

Thank you, @MagTuxGit You've shared an amazing suggestion!

@enriquez @maciekish I don't know ruby, but I support this idea to adopt uiauto for working with Xcode 6.

@maciekish, you can look at https://github.com/idStar/ui-automation-runner