This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grep -vwE "(OVERDRAFT|overdraft|Overdraft|BKOFAMERICA MOBILE|CHECKCARD|KEEP THE CHANGE TRANSFER|Online Banking transfer|BankAmeriDeals CASHBACK|Preferred Rewards|Wire Transfer Fee)" yourExportFileName.txt > yourExportFileName-clean.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation UIViewController (LCKAdditions) | |
- (void)adjustScrollView:(UIScrollView *)scrollView forKeyboardChangeNotification:(NSNotification *)notification { | |
NSDictionary *keyboardInfo = [notification userInfo]; | |
CGRect keyboardFrame = [[keyboardInfo valueForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue]; | |
CGRect convertedFrame = [scrollView.superview convertRect:keyboardFrame fromView:scrollView.window]; | |
CGFloat keyboardHeight = CGRectGetHeight(convertedFrame); | |
UIEdgeInsets contentInsets = scrollView.contentInset; | |