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
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-shade-plugin</artifactId> | |
<version>1.5</version> | |
<executions> | |
<execution> | |
<phase>package</phase> | |
<goals> |
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
<dependencies> | |
<dependency> | |
<groupId>org.springframework.ws</groupId> | |
<artifactId>spring-ws-core</artifactId> | |
<version>2.0.2.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>jdom</groupId> | |
<artifactId>jdom</artifactId> | |
<version>1.0</version> |
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
launchctl unload -w ~/Library/LaunchAgents/ws.agile.1PasswordAgent.plist |
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
// | |
// TransitionController.h | |
// | |
// Created by XJones on 11/25/11. | |
// | |
#import <UIKit/UIKit.h> | |
@interface TransitionController : UIViewController |
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
[array insertObject:UITableViewIndexSearch atIndex:0]; |
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
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index | |
{ | |
if (index == 0) { | |
CGRect searchBarFrame = self.searchDisplayController.searchBar.frame; | |
[tableView scrollRectToVisible:searchBarFrame animated:NO]; | |
return -1; | |
} | |
return index; | |
} |
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
2013-03-06 09:27:40.748 PowerPlay[11962:c07] Scroll to: <NSIndexPath 0xcab9230> 2 indexes [1, 0] for cell: <AppointmentDetailEditCell: 0xc90d050; baseClass = UITableViewCell; frame = (0 140; 512 46); text = 'Name'; autoresize = W; layer = <CALayer: 0xc90d1b0>> and field: <UITextField: 0xc90cba0; frame = (266 12; 183 19); text = 'Santa-Maria'; clipsToBounds = YES; opaque = NO; autoresize = LM+W; tag = 1; gestureRecognizers = <NSArray: 0xc915090>; layer = <CALayer: 0xc90ccf0>> | |
2013-03-06 09:27:41.130 PowerPlay[11962:c07] Scroll to: <NSIndexPath 0x12bc09e0> 2 indexes [3, 0] for cell: <AppointmentDetailEditCell: 0xc9215f0; baseClass = UITableViewCell; frame = (0 351; 512 45); text = 'Address 1'; autoresize = W; layer = <CALayer: 0xc921750>> and field: <UITextField: 0xc921e80; frame = (83 12; 350 19); text = '134 cc way'; clipsToBounds = YES; opaque = NO; autoresize = W; tag = 2; gestureRecognizers = <NSArray: 0xc922410>; layer = <CALayer: 0xc921fd0>> | |
2013-03-06 09:27:41.525 PowerPlay[11962:c07] Scroll to: <NSInde |
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
- (void)keyboardControls:(BSKeyboardControls *)keyboardControls selectedField:(UIView *)field inDirection:(BSKeyboardControlsDirection)direction | |
{ | |
AppointmentDetailEditCell *cell = (AppointmentDetailEditCell *)keyboardControls.activeField.superview.superview; | |
NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:cell.center]; | |
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionMiddle animated:YES]; | |
double delayInSeconds = 0.2; | |
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC); | |
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){ |
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
- (void)keyboardControls:(BSKeyboardControls *)keyboardControls selectedField:(UIView *)field inDirection:(BSKeyboardControlsDirection)direction | |
{ | |
AppointmentDetailEditCell *cell = (AppointmentDetailEditCell *)keyboardControls.activeField.superview.superview; | |
NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:cell.center]; | |
NSLog(@"Scroll to: %@ for cell: %@ and field: %@", indexPath, cell, field); | |
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionMiddle animated:YES]; | |
} |
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
class Person { | |
let name: String | |
var loves: Person? | |
init(_ name: String) { | |
self.name = name | |
} | |
func loves(_ who: Person) { | |
loves = who |