Completed password cell handling and misc UI and moc update improvements.
[UPDATED] Make private moc parent of all private blocks to avoid blocking the main thread for writes, update the main moc on private moc updates. [FIXED] Don't cause a crash on elements with a bad type. [UPDATED] Improved cell handling and UI update handling. [UPDATED] Replace FontReplacer with moarfonts to fix issues in UICollectionViewCells.
This commit is contained in:
parent
f475c15360
commit
bd37f1d6a7
1
External/FontReplacer
vendored
1
External/FontReplacer
vendored
@ -1 +0,0 @@
|
|||||||
Subproject commit 4e3dea08702906fc5d51c8b75dda5da29c545a74
|
|
2
External/Pearl
vendored
2
External/Pearl
vendored
@ -1 +1 @@
|
|||||||
Subproject commit b50115c767e7c0d412099ae169891dbb625b8c64
|
Subproject commit d462ada876939cab875e08736b1efc7af065848d
|
@ -31,6 +31,21 @@
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (NSString *)description {
|
||||||
|
|
||||||
|
return strf( @"<%@: version=%d>", NSStringFromClass( [self class] ), self.version );
|
||||||
|
}
|
||||||
|
|
||||||
|
- (BOOL)isEqual:(id)other {
|
||||||
|
|
||||||
|
if (other == self)
|
||||||
|
return YES;
|
||||||
|
if (!other || ![other conformsToProtocol:@protocol(MPAlgorithm)])
|
||||||
|
return NO;
|
||||||
|
|
||||||
|
return [(id<MPAlgorithm>)other version] == [self version];
|
||||||
|
}
|
||||||
|
|
||||||
- (BOOL)migrateUser:(MPUserEntity *)user inContext:(NSManagedObjectContext *)moc {
|
- (BOOL)migrateUser:(MPUserEntity *)user inContext:(NSManagedObjectContext *)moc {
|
||||||
|
|
||||||
NSError *error = nil;
|
NSError *error = nil;
|
||||||
@ -250,23 +265,24 @@
|
|||||||
uint32_t ncounter = htonl(counter), nnameLength = htonl(name.length);
|
uint32_t ncounter = htonl(counter), nnameLength = htonl(name.length);
|
||||||
NSData *counterBytes = [NSData dataWithBytes:&ncounter length:sizeof(ncounter)];
|
NSData *counterBytes = [NSData dataWithBytes:&ncounter length:sizeof(ncounter)];
|
||||||
NSData *nameLengthBytes = [NSData dataWithBytes:&nnameLength length:sizeof(nnameLength)];
|
NSData *nameLengthBytes = [NSData dataWithBytes:&nnameLength length:sizeof(nnameLength)];
|
||||||
trc(@"seed from: hmac-sha256(%@, 'com.lyndir.masterpassword' | %@ | %@ | %@)", [key.keyData encodeBase64], [nameLengthBytes encodeHex], name, [counterBytes encodeHex]);
|
trc(@"seed from: hmac-sha256(%@, 'com.lyndir.masterpassword' | %@ | %@ | %@)", [key.keyData encodeBase64],
|
||||||
|
[nameLengthBytes encodeHex], name, [counterBytes encodeHex]);
|
||||||
NSData *seed = [[NSData dataByConcatenatingDatas:
|
NSData *seed = [[NSData dataByConcatenatingDatas:
|
||||||
[@"com.lyndir.masterpassword" dataUsingEncoding:NSUTF8StringEncoding],
|
[@"com.lyndir.masterpassword" dataUsingEncoding:NSUTF8StringEncoding],
|
||||||
nameLengthBytes,
|
nameLengthBytes, [name dataUsingEncoding:NSUTF8StringEncoding],
|
||||||
[name dataUsingEncoding:NSUTF8StringEncoding],
|
counterBytes, nil]
|
||||||
counterBytes,
|
|
||||||
nil]
|
|
||||||
hmacWith:PearlHashSHA256 key:key.keyData];
|
hmacWith:PearlHashSHA256 key:key.keyData];
|
||||||
trc(@"seed is: %@", [seed encodeBase64]);
|
trc(@"seed is: %@", [seed encodeBase64]);
|
||||||
const char *seedBytes = seed.bytes;
|
const char *seedBytes = seed.bytes;
|
||||||
|
|
||||||
// Determine the cipher from the first seed byte.
|
// Determine the cipher from the first seed byte.
|
||||||
NSAssert([seed length], @"Missing seed.");
|
NSAssert([seed length], @"Missing seed.");
|
||||||
NSArray *typeCiphers = [[MPTypes_ciphers valueForKey:[self classNameOfType:type]]
|
NSString *typeClass = [self classNameOfType:type];
|
||||||
valueForKey:[self nameOfType:type]];
|
NSString *typeName = [self nameOfType:type];
|
||||||
|
id classCiphers = [MPTypes_ciphers valueForKey:typeClass];
|
||||||
|
NSArray *typeCiphers = [classCiphers valueForKey:typeName];
|
||||||
NSString *cipher = typeCiphers[htons(seedBytes[0]) % [typeCiphers count]];
|
NSString *cipher = typeCiphers[htons(seedBytes[0]) % [typeCiphers count]];
|
||||||
trc(@"type %@, ciphers: %@, selected: %@", [self nameOfType:type], typeCiphers, cipher);
|
trc(@"type %@, ciphers: %@, selected: %@", typeName, typeCiphers, cipher);
|
||||||
|
|
||||||
// Encode the content, character by character, using subsequent seed bytes and the cipher.
|
// Encode the content, character by character, using subsequent seed bytes and the cipher.
|
||||||
NSAssert([seed length] >= [cipher length] + 1, @"Insufficient seed bytes to encode cipher.");
|
NSAssert([seed length] >= [cipher length] + 1, @"Insufficient seed bytes to encode cipher.");
|
||||||
@ -275,8 +291,7 @@
|
|||||||
uint16_t keyByte = htons(seedBytes[c + 1]);
|
uint16_t keyByte = htons(seedBytes[c + 1]);
|
||||||
NSString *cipherClass = [cipher substringWithRange:NSMakeRange( c, 1 )];
|
NSString *cipherClass = [cipher substringWithRange:NSMakeRange( c, 1 )];
|
||||||
NSString *cipherClassCharacters = [[MPTypes_ciphers valueForKey:@"MPCharacterClasses"] valueForKey:cipherClass];
|
NSString *cipherClassCharacters = [[MPTypes_ciphers valueForKey:@"MPCharacterClasses"] valueForKey:cipherClass];
|
||||||
NSString *character = [cipherClassCharacters substringWithRange:NSMakeRange( keyByte % [cipherClassCharacters length],
|
NSString *character = [cipherClassCharacters substringWithRange:NSMakeRange( keyByte % [cipherClassCharacters length], 1 )];
|
||||||
1 )];
|
|
||||||
|
|
||||||
trc(@"class %@ has characters: %@, index: %u, selected: %@", cipherClass, cipherClassCharacters, keyByte, character);
|
trc(@"class %@ has characters: %@, index: %u, selected: %@", cipherClass, cipherClassCharacters, keyByte, character);
|
||||||
[content appendString:character];
|
[content appendString:character];
|
||||||
|
@ -168,7 +168,7 @@ static NSDictionary *keyQuery(MPUserEntity *user) {
|
|||||||
|
|
||||||
MPKey *recoverKey = newKey;
|
MPKey *recoverKey = newKey;
|
||||||
#ifdef PEARL_UIKIT
|
#ifdef PEARL_UIKIT
|
||||||
PearlOverlay *activityOverlay = [PearlOverlay showOverlayWithTitle:PearlString( @"Migrating %ld sites...", (long)[user.elements count] )];
|
PearlOverlay *activityOverlay = [PearlOverlay showProgressOverlayWithTitle:PearlString( @"Migrating %ld sites...", (long)[user.elements count] )];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
for (MPElementEntity *element in user.elements) {
|
for (MPElementEntity *element in user.elements) {
|
||||||
|
@ -30,11 +30,12 @@
|
|||||||
|
|
||||||
- (MPUserEntity *)activeUserInContext:(NSManagedObjectContext *)moc {
|
- (MPUserEntity *)activeUserInContext:(NSManagedObjectContext *)moc {
|
||||||
|
|
||||||
if (!self.activeUserOID || !moc)
|
NSManagedObjectID *activeUserOID = self.activeUserOID;
|
||||||
|
if (!activeUserOID || !moc)
|
||||||
return nil;
|
return nil;
|
||||||
|
|
||||||
NSError *error;
|
NSError *error;
|
||||||
MPUserEntity *activeUser = (MPUserEntity *)[moc existingObjectWithID:self.activeUserOID error:&error];
|
MPUserEntity *activeUser = (MPUserEntity *)[moc existingObjectWithID:activeUserOID error:&error];
|
||||||
if (!activeUser) {
|
if (!activeUser) {
|
||||||
[self signOutAnimated:YES];
|
[self signOutAnimated:YES];
|
||||||
err(@"Failed to retrieve active user: %@", error);
|
err(@"Failed to retrieve active user: %@", error);
|
||||||
|
@ -30,7 +30,7 @@ typedef enum {
|
|||||||
|
|
||||||
/** @param completion The block to execute after adding the element, executed from the main thread with the new element in the main MOC. */
|
/** @param completion The block to execute after adding the element, executed from the main thread with the new element in the main MOC. */
|
||||||
- (void)addElementNamed:(NSString *)siteName completion:(void (^)(MPElementEntity *element))completion;
|
- (void)addElementNamed:(NSString *)siteName completion:(void (^)(MPElementEntity *element))completion;
|
||||||
- (MPElementEntity *)changeElement:(MPElementEntity *)element inContext:(NSManagedObjectContext *)context toType:(MPElementType)type;
|
- (MPElementEntity *)changeElement:(MPElementEntity *)element saveInContext:(NSManagedObjectContext *)context toType:(MPElementType)type;
|
||||||
- (MPImportResult)importSites:(NSString *)importedSitesString
|
- (MPImportResult)importSites:(NSString *)importedSitesString
|
||||||
askImportPassword:(NSString *(^)(NSString *userName))importPassword
|
askImportPassword:(NSString *(^)(NSString *userName))importPassword
|
||||||
askUserPassword:(NSString *(^)(NSString *userName, NSUInteger importCount, NSUInteger deleteCount))userPassword;
|
askUserPassword:(NSString *(^)(NSString *userName, NSUInteger importCount, NSUInteger deleteCount))userPassword;
|
||||||
|
@ -32,7 +32,8 @@ typedef NS_ENUM(NSInteger, MPMigrationLevelCloudStore) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
@implementation MPAppDelegate_Shared(Store)
|
@implementation MPAppDelegate_Shared(Store)
|
||||||
PearlAssociatedObjectProperty(NSManagedObjectContext*, PrivateManagedObjectContext, privateManagedObjectContext);
|
PearlAssociatedObjectProperty(id, SaveObserver, saveObserver);
|
||||||
|
PearlAssociatedObjectProperty(NSManagedObjectContext*, PrivateManagedObjectContext, privateManagedObjectContext);
|
||||||
PearlAssociatedObjectProperty(NSManagedObjectContext*, MainManagedObjectContext, mainManagedObjectContext);
|
PearlAssociatedObjectProperty(NSManagedObjectContext*, MainManagedObjectContext, mainManagedObjectContext);
|
||||||
|
|
||||||
|
|
||||||
@ -50,7 +51,7 @@ PearlAssociatedObjectProperty(NSManagedObjectContext*, MainManagedObjectContext,
|
|||||||
|
|
||||||
+ (BOOL)managedObjectContextForMainThreadPerformBlock:(void (^)(NSManagedObjectContext *mainContext))mocBlock {
|
+ (BOOL)managedObjectContextForMainThreadPerformBlock:(void (^)(NSManagedObjectContext *mainContext))mocBlock {
|
||||||
|
|
||||||
NSManagedObjectContext *mainManagedObjectContext = [self managedObjectContextForMainThreadIfReady];
|
NSManagedObjectContext *mainManagedObjectContext = [[self get] mainManagedObjectContextIfReady];
|
||||||
if (!mainManagedObjectContext)
|
if (!mainManagedObjectContext)
|
||||||
return NO;
|
return NO;
|
||||||
|
|
||||||
@ -63,7 +64,7 @@ PearlAssociatedObjectProperty(NSManagedObjectContext*, MainManagedObjectContext,
|
|||||||
|
|
||||||
+ (BOOL)managedObjectContextForMainThreadPerformBlockAndWait:(void (^)(NSManagedObjectContext *mainContext))mocBlock {
|
+ (BOOL)managedObjectContextForMainThreadPerformBlockAndWait:(void (^)(NSManagedObjectContext *mainContext))mocBlock {
|
||||||
|
|
||||||
NSManagedObjectContext *mainManagedObjectContext = [self managedObjectContextForMainThreadIfReady];
|
NSManagedObjectContext *mainManagedObjectContext = [[self get] mainManagedObjectContextIfReady];
|
||||||
if (!mainManagedObjectContext)
|
if (!mainManagedObjectContext)
|
||||||
return NO;
|
return NO;
|
||||||
|
|
||||||
@ -318,6 +319,11 @@ PearlAssociatedObjectProperty(NSManagedObjectContext*, MainManagedObjectContext,
|
|||||||
[moc saveToStore];
|
[moc saveToStore];
|
||||||
[moc reset];
|
[moc reset];
|
||||||
|
|
||||||
|
if (self.saveObserver) {
|
||||||
|
[[NSNotificationCenter defaultCenter] removeObserver:self.saveObserver];
|
||||||
|
self.saveObserver = nil;
|
||||||
|
}
|
||||||
|
|
||||||
self.privateManagedObjectContext = nil;
|
self.privateManagedObjectContext = nil;
|
||||||
self.mainManagedObjectContext = nil;
|
self.mainManagedObjectContext = nil;
|
||||||
}];
|
}];
|
||||||
@ -334,8 +340,8 @@ PearlAssociatedObjectProperty(NSManagedObjectContext*, MainManagedObjectContext,
|
|||||||
} );
|
} );
|
||||||
|
|
||||||
// Create our contexts.
|
// Create our contexts.
|
||||||
NSManagedObjectContext
|
NSManagedObjectContext *privateManagedObjectContext =
|
||||||
*privateManagedObjectContext = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType];
|
[[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType];
|
||||||
[privateManagedObjectContext performBlockAndWait:^{
|
[privateManagedObjectContext performBlockAndWait:^{
|
||||||
privateManagedObjectContext.mergePolicy = NSMergeByPropertyObjectTrumpMergePolicy;
|
privateManagedObjectContext.mergePolicy = NSMergeByPropertyObjectTrumpMergePolicy;
|
||||||
privateManagedObjectContext.persistentStoreCoordinator = coordinator;
|
privateManagedObjectContext.persistentStoreCoordinator = coordinator;
|
||||||
@ -358,6 +364,16 @@ PearlAssociatedObjectProperty(NSManagedObjectContext*, MainManagedObjectContext,
|
|||||||
NSManagedObjectContext *mainManagedObjectContext = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType];
|
NSManagedObjectContext *mainManagedObjectContext = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType];
|
||||||
mainManagedObjectContext.parentContext = privateManagedObjectContext;
|
mainManagedObjectContext.parentContext = privateManagedObjectContext;
|
||||||
|
|
||||||
|
if (self.saveObserver)
|
||||||
|
[[NSNotificationCenter defaultCenter] removeObserver:self.saveObserver];
|
||||||
|
self.saveObserver = [[NSNotificationCenter defaultCenter]
|
||||||
|
addObserverForName:NSManagedObjectContextDidSaveNotification object:privateManagedObjectContext queue:nil usingBlock:
|
||||||
|
^(NSNotification *note) {
|
||||||
|
[mainManagedObjectContext performBlock:^{
|
||||||
|
[mainManagedObjectContext mergeChangesFromContextDidSaveNotification:note];
|
||||||
|
}];
|
||||||
|
}];
|
||||||
|
|
||||||
self.privateManagedObjectContext = privateManagedObjectContext;
|
self.privateManagedObjectContext = privateManagedObjectContext;
|
||||||
self.mainManagedObjectContext = mainManagedObjectContext;
|
self.mainManagedObjectContext = mainManagedObjectContext;
|
||||||
}
|
}
|
||||||
@ -386,12 +402,12 @@ PearlAssociatedObjectProperty(NSManagedObjectContext*, MainManagedObjectContext,
|
|||||||
[MPAppDelegate_Shared managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
[MPAppDelegate_Shared managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
MPUserEntity *activeUser = [self activeUserInContext:context];
|
MPUserEntity *activeUser = [self activeUserInContext:context];
|
||||||
NSAssert(activeUser, @"Missing user.");
|
NSAssert(activeUser, @"Missing user.");
|
||||||
if (!activeUser)
|
if (!activeUser) {
|
||||||
|
completion( nil );
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
MPElementType type = activeUser.defaultType;
|
MPElementType type = activeUser.defaultType;
|
||||||
if (!type)
|
|
||||||
type = activeUser.defaultType = MPElementTypeGeneratedLong;
|
|
||||||
NSString *typeEntityClassName = [MPAlgorithmDefault classNameOfType:type];
|
NSString *typeEntityClassName = [MPAlgorithmDefault classNameOfType:type];
|
||||||
|
|
||||||
MPElementEntity *element = [NSEntityDescription insertNewObjectForEntityForName:typeEntityClassName
|
MPElementEntity *element = [NSEntityDescription insertNewObjectForEntityForName:typeEntityClassName
|
||||||
@ -408,18 +424,19 @@ PearlAssociatedObjectProperty(NSManagedObjectContext*, MainManagedObjectContext,
|
|||||||
if (element.objectID.isTemporaryID && ![context obtainPermanentIDsForObjects:@[ element ] error:&error])
|
if (element.objectID.isTemporaryID && ![context obtainPermanentIDsForObjects:@[ element ] error:&error])
|
||||||
err(@"Failed to obtain a permanent object ID after creating new element: %@", error);
|
err(@"Failed to obtain a permanent object ID after creating new element: %@", error);
|
||||||
|
|
||||||
NSManagedObjectID *elementOID = [element objectID];
|
completion( element );
|
||||||
dispatch_async( dispatch_get_main_queue(), ^{
|
|
||||||
completion(
|
|
||||||
(MPElementEntity *)[[MPAppDelegate_Shared managedObjectContextForMainThreadIfReady] objectRegisteredForID:elementOID] );
|
|
||||||
} );
|
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (MPElementEntity *)changeElement:(MPElementEntity *)element inContext:(NSManagedObjectContext *)context toType:(MPElementType)type {
|
- (MPElementEntity *)changeElement:(MPElementEntity *)element saveInContext:(NSManagedObjectContext *)context toType:(MPElementType)type {
|
||||||
|
|
||||||
if ([element.algorithm classOfType:type] == element.typeClass)
|
if (element.type == type)
|
||||||
|
return element;
|
||||||
|
|
||||||
|
if ([element.algorithm classOfType:type] == element.typeClass) {
|
||||||
element.type = type;
|
element.type = type;
|
||||||
|
[context saveToStore];
|
||||||
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
// Type requires a different class of element. Recreate the element.
|
// Type requires a different class of element. Recreate the element.
|
||||||
@ -435,14 +452,13 @@ PearlAssociatedObjectProperty(NSManagedObjectContext*, MainManagedObjectContext,
|
|||||||
newElement.loginName = element.loginName;
|
newElement.loginName = element.loginName;
|
||||||
|
|
||||||
[context deleteObject:element];
|
[context deleteObject:element];
|
||||||
// TODO: Dodgy... we're not saving consistently here.
|
|
||||||
// Either we should save regardless and change the method signature to saveInContext: or not save at all.
|
|
||||||
[context saveToStore];
|
[context saveToStore];
|
||||||
|
|
||||||
NSError *error;
|
NSError *error;
|
||||||
if (![context obtainPermanentIDsForObjects:@[ newElement ] error:&error])
|
if (![context obtainPermanentIDsForObjects:@[ newElement ] error:&error])
|
||||||
err(@"Failed to obtain a permanent object ID after changing object type: %@", error);
|
err(@"Failed to obtain a permanent object ID after changing object type: %@", error);
|
||||||
|
|
||||||
|
[[NSNotificationCenter defaultCenter] postNotificationName:MPElementUpdatedNotification object:element.objectID];
|
||||||
element = newElement;
|
element = newElement;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,13 +8,14 @@
|
|||||||
|
|
||||||
#import "MPEntities.h"
|
#import "MPEntities.h"
|
||||||
#import "MPAppDelegate_Shared.h"
|
#import "MPAppDelegate_Shared.h"
|
||||||
|
#import "MPAppDelegate_Store.h"
|
||||||
|
|
||||||
@implementation NSManagedObjectContext(MP)
|
@implementation NSManagedObjectContext(MP)
|
||||||
|
|
||||||
- (BOOL)saveToStore {
|
- (BOOL)saveToStore {
|
||||||
|
|
||||||
__block BOOL success = YES;
|
__block BOOL success = YES;
|
||||||
if ([self hasChanges])
|
if ([self hasChanges]) {
|
||||||
[self performBlockAndWait:^{
|
[self performBlockAndWait:^{
|
||||||
@try {
|
@try {
|
||||||
NSError *error = nil;
|
NSError *error = nil;
|
||||||
@ -26,6 +27,7 @@
|
|||||||
err(@"While saving: %@", exception);
|
err(@"While saving: %@", exception);
|
||||||
}
|
}
|
||||||
}];
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
return success && (!self.parentContext || [self.parentContext saveToStore]);
|
return success && (!self.parentContext || [self.parentContext saveToStore]);
|
||||||
}
|
}
|
||||||
@ -42,6 +44,14 @@
|
|||||||
type = [self.user defaultType];
|
type = [self.user defaultType];
|
||||||
if (!type || type == (MPElementType)NSNotFound)
|
if (!type || type == (MPElementType)NSNotFound)
|
||||||
type = MPElementTypeGeneratedLong;
|
type = MPElementTypeGeneratedLong;
|
||||||
|
if (![self isKindOfClass:[self.algorithm classOfType:type]]) {
|
||||||
|
// NSAssert(NO, @"This object's class does not support the type: %lu", (long)type);
|
||||||
|
for (MPElementType aType = type; type != (aType = [self.algorithm nextType:aType]);)
|
||||||
|
if ([self isKindOfClass:[self.algorithm classOfType:aType]]) {
|
||||||
|
err(@"Invalid type for: %@, type: %lu. Will use %lu instead.", self.name, (long)type, (long)aType);
|
||||||
|
return aType;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
@ -199,7 +209,7 @@
|
|||||||
|
|
||||||
- (MPElementType)defaultType {
|
- (MPElementType)defaultType {
|
||||||
|
|
||||||
return (MPElementType)[self.defaultType_ unsignedIntegerValue];
|
return IfElse((MPElementType)[self.defaultType_ unsignedIntegerValue], MPElementTypeGeneratedLong);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)setDefaultType:(MPElementType)aDefaultType {
|
- (void)setDefaultType:(MPElementType)aDefaultType {
|
||||||
|
@ -113,9 +113,8 @@
|
|||||||
// "Next type" button.
|
// "Next type" button.
|
||||||
[MPMacAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
[MPMacAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
MPElementEntity *element = [self.representedObject entityInContext:context];
|
MPElementEntity *element = [self.representedObject entityInContext:context];
|
||||||
element = [[MPMacAppDelegate get] changeElement:element inContext:context
|
element = [[MPMacAppDelegate get] changeElement:element saveInContext:context
|
||||||
toType:[element.algorithm nextType:element.type]];
|
toType:[element.algorithm nextType:element.type]];
|
||||||
[context saveToStore];
|
|
||||||
|
|
||||||
self.representedObject = [[MPElementModel alloc] initWithEntity:element];
|
self.representedObject = [[MPElementModel alloc] initWithEntity:element];
|
||||||
}];
|
}];
|
||||||
@ -131,9 +130,8 @@
|
|||||||
// "Previous type" button.
|
// "Previous type" button.
|
||||||
[MPMacAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
[MPMacAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
MPElementEntity *element = [self.representedObject entityInContext:context];
|
MPElementEntity *element = [self.representedObject entityInContext:context];
|
||||||
element = [[MPMacAppDelegate get] changeElement:element inContext:context
|
element = [[MPMacAppDelegate get] changeElement:element saveInContext:context
|
||||||
toType:[element.algorithm previousType:element.type]];
|
toType:[element.algorithm previousType:element.type]];
|
||||||
[context saveToStore];
|
|
||||||
|
|
||||||
self.representedObject = [[MPElementModel alloc] initWithEntity:element];
|
self.representedObject = [[MPElementModel alloc] initWithEntity:element];
|
||||||
}];
|
}];
|
||||||
|
@ -182,7 +182,7 @@
|
|||||||
// "Create" button.
|
// "Create" button.
|
||||||
[[MPMacAppDelegate get] addElementNamed:[self.siteField stringValue] completion:^(MPElementEntity *element) {
|
[[MPMacAppDelegate get] addElementNamed:[self.siteField stringValue] completion:^(MPElementEntity *element) {
|
||||||
if (element)
|
if (element)
|
||||||
[self updateElements];
|
PearlMainQueue( ^{ [self updateElements]; } );
|
||||||
}];
|
}];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -37,6 +37,7 @@ typedef NS_ENUM(NSUInteger, MPAvatarMode) {
|
|||||||
@property (assign, nonatomic) MPAvatarMode mode;
|
@property (assign, nonatomic) MPAvatarMode mode;
|
||||||
@property (assign, nonatomic) CGFloat visibility;
|
@property (assign, nonatomic) CGFloat visibility;
|
||||||
@property (assign, nonatomic) BOOL spinnerActive;
|
@property (assign, nonatomic) BOOL spinnerActive;
|
||||||
|
@property (assign, nonatomic, readonly) BOOL newUser;
|
||||||
|
|
||||||
+ (NSString *)reuseIdentifier;
|
+ (NSString *)reuseIdentifier;
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#import "MPAvatarCell.h"
|
#import "MPAvatarCell.h"
|
||||||
|
#import "MPPasswordLargeCell.h"
|
||||||
|
|
||||||
const long MPAvatarAdd = 10000;
|
const long MPAvatarAdd = 10000;
|
||||||
|
|
||||||
@ -34,6 +35,7 @@ const long MPAvatarAdd = 10000;
|
|||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation MPAvatarCell {
|
@implementation MPAvatarCell {
|
||||||
|
CAAnimationGroup *_targetedShadowAnimation;
|
||||||
}
|
}
|
||||||
|
|
||||||
+ (NSString *)reuseIdentifier {
|
+ (NSString *)reuseIdentifier {
|
||||||
@ -47,6 +49,8 @@ const long MPAvatarAdd = 10000;
|
|||||||
|
|
||||||
[super awakeFromNib];
|
[super awakeFromNib];
|
||||||
|
|
||||||
|
self.alpha = 0;
|
||||||
|
|
||||||
self.nameContainer.layer.cornerRadius = 5;
|
self.nameContainer.layer.cornerRadius = 5;
|
||||||
|
|
||||||
self.avatarImageView.hidden = NO;
|
self.avatarImageView.hidden = NO;
|
||||||
@ -73,15 +77,21 @@ const long MPAvatarAdd = 10000;
|
|||||||
pulseShadowOpacityAnimation.autoreverses = YES;
|
pulseShadowOpacityAnimation.autoreverses = YES;
|
||||||
pulseShadowOpacityAnimation.repeatCount = MAXFLOAT;
|
pulseShadowOpacityAnimation.repeatCount = MAXFLOAT;
|
||||||
|
|
||||||
CAAnimationGroup *group = [CAAnimationGroup new];
|
_targetedShadowAnimation = [CAAnimationGroup new];
|
||||||
group.animations = @[ toShadowOpacityAnimation, pulseShadowOpacityAnimation ];
|
_targetedShadowAnimation.animations = @[ toShadowOpacityAnimation, pulseShadowOpacityAnimation ];
|
||||||
group.duration = MAXFLOAT;
|
_targetedShadowAnimation.duration = MAXFLOAT;
|
||||||
[self.avatarImageView.layer addAnimation:group forKey:@"targetedShadow"];
|
|
||||||
self.avatarImageView.layer.shadowColor = [UIColor whiteColor].CGColor;
|
self.avatarImageView.layer.shadowColor = [UIColor whiteColor].CGColor;
|
||||||
self.avatarImageView.layer.shadowOffset = CGSizeZero;
|
self.avatarImageView.layer.shadowOffset = CGSizeZero;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)prepareForReuse {
|
||||||
|
|
||||||
|
[super prepareForReuse];
|
||||||
|
|
||||||
|
_newUser = NO;
|
||||||
[self setVisibility:0 animated:NO];
|
[self setVisibility:0 animated:NO];
|
||||||
[self setMode:MPAvatarModeLowered animated:NO];
|
[self setMode:MPAvatarModeLowered animated:NO];
|
||||||
|
[self setSpinnerActive:NO animated:NO];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)dealloc {
|
- (void)dealloc {
|
||||||
@ -95,8 +105,11 @@ const long MPAvatarAdd = 10000;
|
|||||||
|
|
||||||
_avatar = avatar;
|
_avatar = avatar;
|
||||||
|
|
||||||
if (avatar == MPAvatarAdd)
|
if (avatar == MPAvatarAdd) {
|
||||||
self.avatarImageView.image = [UIImage imageNamed:@"avatar-add"];
|
self.avatarImageView.image = [UIImage imageNamed:@"avatar-add"];
|
||||||
|
self.name = strl( @"New User" );
|
||||||
|
_newUser = YES;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
self.avatarImageView.image = [UIImage imageNamed:strf( @"avatar-%ld", avatar )];
|
self.avatarImageView.image = [UIImage imageNamed:strf( @"avatar-%ld", avatar )];
|
||||||
}
|
}
|
||||||
@ -151,6 +164,8 @@ const long MPAvatarAdd = 10000;
|
|||||||
|
|
||||||
- (void)setSpinnerActive:(BOOL)spinnerActive animated:(BOOL)animated {
|
- (void)setSpinnerActive:(BOOL)spinnerActive animated:(BOOL)animated {
|
||||||
|
|
||||||
|
if (_spinnerActive == spinnerActive)
|
||||||
|
return;
|
||||||
_spinnerActive = spinnerActive;
|
_spinnerActive = spinnerActive;
|
||||||
|
|
||||||
CABasicAnimation *rotate = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
|
CABasicAnimation *rotate = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
|
||||||
@ -180,10 +195,20 @@ const long MPAvatarAdd = 10000;
|
|||||||
[UIView animateWithDuration:animated? 0.2f: 0 animations:^{
|
[UIView animateWithDuration:animated? 0.2f: 0 animations:^{
|
||||||
self.avatarImageView.transform = CGAffineTransformIdentity;
|
self.avatarImageView.transform = CGAffineTransformIdentity;
|
||||||
}];
|
}];
|
||||||
[UIView animateWithDuration:animated? 0.3f: 0 animations:^{
|
[UIView animateWithDuration:animated? 0.3f: 0 delay:0 options:UIViewAnimationOptionOverrideInheritedDuration animations:^{
|
||||||
|
self.alpha = 1;
|
||||||
|
|
||||||
|
if (self.newUser) {
|
||||||
|
if (self.mode == MPAvatarModeLowered)
|
||||||
|
self.avatar = MPAvatarAdd;
|
||||||
|
else if (self.avatar == MPAvatarAdd)
|
||||||
|
self.avatar = arc4random() % MPAvatarCount;
|
||||||
|
}
|
||||||
|
|
||||||
switch (self.mode) {
|
switch (self.mode) {
|
||||||
|
|
||||||
case MPAvatarModeLowered: {
|
case MPAvatarModeLowered: {
|
||||||
|
|
||||||
self.avatarSizeConstraint.constant = self.avatarImageView.image.size.height;
|
self.avatarSizeConstraint.constant = self.avatarImageView.image.size.height;
|
||||||
self.avatarRaisedConstraint.priority = UILayoutPriorityDefaultLow;
|
self.avatarRaisedConstraint.priority = UILayoutPriorityDefaultLow;
|
||||||
self.avatarToTopConstraint.priority = UILayoutPriorityDefaultLow;
|
self.avatarToTopConstraint.priority = UILayoutPriorityDefaultLow;
|
||||||
@ -235,14 +260,20 @@ const long MPAvatarAdd = 10000;
|
|||||||
self.nameContainer.alpha = 0;
|
self.nameContainer.alpha = 0;
|
||||||
self.nameContainer.backgroundColor = [UIColor blackColor];
|
self.nameContainer.backgroundColor = [UIColor blackColor];
|
||||||
self.avatarImageView.alpha = 1;
|
self.avatarImageView.alpha = 1;
|
||||||
self.avatarImageView.layer.shadowOpacity = 0;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
[self.avatarSizeConstraint apply];
|
[self.avatarSizeConstraint apply];
|
||||||
|
[self.avatarRaisedConstraint apply];
|
||||||
[self.avatarToTopConstraint apply];
|
[self.avatarToTopConstraint apply];
|
||||||
[self.nameToCenterConstraint apply];
|
[self.nameToCenterConstraint apply];
|
||||||
|
|
||||||
|
// Avatar minimized.
|
||||||
|
if (self.mode == MPAvatarModeRaisedAndMinimized)
|
||||||
|
[self.avatarImageView.layer removeAllAnimations];
|
||||||
|
else if (![self.avatarImageView.layer animationForKey:@"targetedShadow"])
|
||||||
|
[self.avatarImageView.layer addAnimation:_targetedShadowAnimation forKey:@"targetedShadow"];
|
||||||
|
|
||||||
// Avatar selection and spinner.
|
// Avatar selection and spinner.
|
||||||
if (self.mode != MPAvatarModeRaisedAndMinimized && (self.selected || self.highlighted) && !self.spinnerActive)
|
if (self.mode != MPAvatarModeRaisedAndMinimized && (self.selected || self.highlighted) && !self.spinnerActive)
|
||||||
self.avatarImageView.backgroundColor = self.avatarImageView.tintColor;
|
self.avatarImageView.backgroundColor = self.avatarImageView.tintColor;
|
||||||
@ -250,7 +281,7 @@ const long MPAvatarAdd = 10000;
|
|||||||
self.avatarImageView.backgroundColor = [UIColor clearColor];
|
self.avatarImageView.backgroundColor = [UIColor clearColor];
|
||||||
self.avatarImageView.layer.cornerRadius = self.avatarImageView.bounds.size.height / 2;
|
self.avatarImageView.layer.cornerRadius = self.avatarImageView.bounds.size.height / 2;
|
||||||
self.spinner.alpha = self.spinnerActive? 1: 0;
|
self.spinner.alpha = self.spinnerActive? 1: 0;
|
||||||
}];
|
} completion:nil];
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
@ -9,17 +9,15 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
//
|
//
|
||||||
// PearlUIView.h
|
// MPCell.h
|
||||||
// PearlUIView
|
// MPCell
|
||||||
//
|
//
|
||||||
// Created by lhunath on 2014-03-17.
|
// Created by lhunath on 2014-03-27.
|
||||||
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
@interface PearlUIView : UIView
|
@interface MPCell : UICollectionViewCell
|
||||||
|
|
||||||
@property(assign, nonatomic) BOOL ignoreTouches;
|
|
||||||
|
|
||||||
@end
|
@end
|
@ -9,18 +9,16 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
//
|
//
|
||||||
// PearlUINavigationBar.h
|
// MPCell.h
|
||||||
// PearlUINavigationBar
|
// MPCell
|
||||||
//
|
//
|
||||||
// Created by lhunath on 2014-03-17.
|
// Created by lhunath on 2014-03-27.
|
||||||
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
#import <Foundation/Foundation.h>
|
#import "MPCell.h"
|
||||||
|
|
||||||
@interface PearlUINavigationBar : UINavigationBar
|
@implementation MPCell {
|
||||||
|
}
|
||||||
@property (assign, nonatomic) BOOL ignoreTouches;
|
|
||||||
@property (assign, nonatomic) BOOL invisible;
|
|
||||||
|
|
||||||
@end
|
@end
|
@ -89,19 +89,18 @@
|
|||||||
|
|
||||||
[self becomeFirstResponder];
|
[self becomeFirstResponder];
|
||||||
|
|
||||||
[UIView animateWithDuration:animated? 0.3f: 0 animations:^{
|
|
||||||
switch (self.mode) {
|
switch (self.mode) {
|
||||||
case MPCombinedModeUserSelection: {
|
case MPCombinedModeUserSelection: {
|
||||||
[self.usersVC setActive:YES animated:NO];
|
[self.usersVC setActive:YES animated:animated];
|
||||||
[self.passwordsVC setActive:NO animated:NO];
|
[self.passwordsVC setActive:NO animated:animated];
|
||||||
// MPUsersViewController *usersVC = [self.storyboard instantiateViewControllerWithIdentifier:@"MPUsersViewController"];
|
// MPUsersViewController *usersVC = [self.storyboard instantiateViewControllerWithIdentifier:@"MPUsersViewController"];
|
||||||
// [self setViewControllers:@[ usersVC ] direction:UIPageViewControllerNavigationDirectionReverse
|
// [self setViewControllers:@[ usersVC ] direction:UIPageViewControllerNavigationDirectionReverse
|
||||||
// animated:animated completion:nil];
|
// animated:animated completion:nil];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case MPCombinedModePasswordSelection: {
|
case MPCombinedModePasswordSelection: {
|
||||||
[self.usersVC setActive:NO animated:NO];
|
[self.usersVC setActive:NO animated:animated];
|
||||||
[self.passwordsVC setActive:YES animated:NO];
|
[self.passwordsVC setActive:YES animated:animated];
|
||||||
// MPPasswordsViewController *passwordsVC = [self.storyboard instantiateViewControllerWithIdentifier:@"MPPasswordsViewController"];
|
// MPPasswordsViewController *passwordsVC = [self.storyboard instantiateViewControllerWithIdentifier:@"MPPasswordsViewController"];
|
||||||
// [self setViewControllers:@[ passwordsVC ] direction:UIPageViewControllerNavigationDirectionForward
|
// [self setViewControllers:@[ passwordsVC ] direction:UIPageViewControllerNavigationDirectionForward
|
||||||
// animated:animated completion:nil];
|
// animated:animated completion:nil];
|
||||||
@ -110,7 +109,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
[self.passwordsTopConstraint apply];
|
[self.passwordsTopConstraint apply];
|
||||||
}];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - Private
|
#pragma mark - Private
|
||||||
|
@ -66,10 +66,11 @@
|
|||||||
|
|
||||||
__weak MPElementListAllViewController *wSelf = self;
|
__weak MPElementListAllViewController *wSelf = self;
|
||||||
[[MPiOSAppDelegate get] addElementNamed:[alert textFieldAtIndex:0].text completion:^(MPElementEntity *element) {
|
[[MPiOSAppDelegate get] addElementNamed:[alert textFieldAtIndex:0].text completion:^(MPElementEntity *element) {
|
||||||
if (element) {
|
if (element)
|
||||||
|
PearlMainQueue( ^{
|
||||||
[wSelf.delegate didSelectElement:element];
|
[wSelf.delegate didSelectElement:element];
|
||||||
[wSelf close:nil];
|
[wSelf close:nil];
|
||||||
}
|
} );
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
cancelTitle:[PearlStrings get].commonButtonCancel otherTitles:[PearlStrings get].commonButtonOkay, nil];
|
cancelTitle:[PearlStrings get].commonButtonCancel otherTitles:[PearlStrings get].commonButtonOkay, nil];
|
||||||
@ -85,7 +86,7 @@
|
|||||||
if (buttonIndex == [alert cancelButtonIndex])
|
if (buttonIndex == [alert cancelButtonIndex])
|
||||||
return;
|
return;
|
||||||
|
|
||||||
PearlOverlay *activity = [PearlOverlay showOverlayWithTitle:@"Upgrading Sites"];
|
PearlOverlay *activity = [PearlOverlay showProgressOverlayWithTitle:@"Upgrading Sites"];
|
||||||
[self performUpgradeAllWithCompletion:^(BOOL success, NSDictionary *changes) {
|
[self performUpgradeAllWithCompletion:^(BOOL success, NSDictionary *changes) {
|
||||||
dispatch_async( dispatch_get_main_queue(), ^{
|
dispatch_async( dispatch_get_main_queue(), ^{
|
||||||
[self showUpgradeChanges:changes];
|
[self showUpgradeChanges:changes];
|
||||||
|
@ -193,7 +193,7 @@
|
|||||||
NSString *query = [self.searchDisplayController.searchBar.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
|
NSString *query = [self.searchDisplayController.searchBar.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
|
||||||
cell.textLabel.text = query;
|
cell.textLabel.text = query;
|
||||||
cell.detailTextLabel.text = PearlString( @"New site: %@",
|
cell.detailTextLabel.text = PearlString( @"New site: %@",
|
||||||
[MPAlgorithmDefault shortNameOfType:[[[MPiOSAppDelegate get] activeUserForMainThread] defaultType]] );
|
[MPAlgorithmDefault shortNameOfType:[[MPiOSAppDelegate get] activeUserForMainThread].defaultType] );
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
|
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
|
||||||
@ -220,7 +220,9 @@
|
|||||||
__weak MPElementListController *wSelf = self;
|
__weak MPElementListController *wSelf = self;
|
||||||
[[MPiOSAppDelegate get] addElementNamed:siteName completion:^(MPElementEntity *element) {
|
[[MPiOSAppDelegate get] addElementNamed:siteName completion:^(MPElementEntity *element) {
|
||||||
if (element)
|
if (element)
|
||||||
|
PearlMainQueue( ^{
|
||||||
[wSelf.delegate didSelectElement:element];
|
[wSelf.delegate didSelectElement:element];
|
||||||
|
} );
|
||||||
}];
|
}];
|
||||||
} cancelTitle:[PearlStrings get].commonButtonCancel otherTitles:[PearlStrings get].commonButtonYes, nil];
|
} cancelTitle:[PearlStrings get].commonButtonCancel otherTitles:[PearlStrings get].commonButtonYes, nil];
|
||||||
}
|
}
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
if (buttonIndex_ == alert.cancelButtonIndex)
|
if (buttonIndex_ == alert.cancelButtonIndex)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
_switchCloudStoreProgress = [PearlOverlay showOverlayWithTitle:@"Enumerating Stores"];
|
_switchCloudStoreProgress = [PearlOverlay showProgressOverlayWithTitle:@"Enumerating Stores"];
|
||||||
dispatch_async( dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0 ), ^{
|
dispatch_async( dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0 ), ^{
|
||||||
[self switchCloudStore];
|
[self switchCloudStore];
|
||||||
} );
|
} );
|
||||||
|
@ -776,7 +776,7 @@
|
|||||||
@"If you continue, the password for this site will change. "
|
@"If you continue, the password for this site will change. "
|
||||||
@"You will need to update your account's old password to the new one."
|
@"You will need to update your account's old password to the new one."
|
||||||
do:^BOOL(MPElementEntity *activeElement, NSManagedObjectContext *context) {
|
do:^BOOL(MPElementEntity *activeElement, NSManagedObjectContext *context) {
|
||||||
_activeElementOID = [[MPiOSAppDelegate get] changeElement:activeElement inContext:context
|
_activeElementOID = [[MPiOSAppDelegate get] changeElement:activeElement saveInContext:context
|
||||||
toType:type].objectID;
|
toType:type].objectID;
|
||||||
return YES;
|
return YES;
|
||||||
}];
|
}];
|
||||||
|
@ -18,19 +18,17 @@
|
|||||||
|
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
#import "MPEntities.h"
|
#import "MPEntities.h"
|
||||||
|
#import "MPCell.h"
|
||||||
|
|
||||||
@interface MPPasswordCell : UICollectionViewCell <UITextFieldDelegate>
|
@interface MPPasswordCell : MPCell
|
||||||
|
|
||||||
@property(nonatomic, copy) NSString *transientSite;
|
@property(strong, nonatomic) IBOutlet UILabel *nameLabel;
|
||||||
@property(strong, nonatomic) IBOutlet UITextField *contentField;
|
@property(strong, nonatomic) IBOutlet UIButton *loginButton;
|
||||||
|
|
||||||
+ (NSString *)reuseIdentifier;
|
|
||||||
|
|
||||||
- (MPElementEntity *)elementInContext:(NSManagedObjectContext *)context;
|
|
||||||
+ (NSString *)reuseIdentifierForElement:(MPElementEntity *)entity;
|
|
||||||
- (void)setElement:(MPElementEntity *)element;
|
|
||||||
|
|
||||||
|
/** Populate our UI to reflect the current state. */
|
||||||
- (void)updateAnimated:(BOOL)animated;
|
- (void)updateAnimated:(BOOL)animated;
|
||||||
- (void)populateWithElement:(MPElementEntity *)element;
|
|
||||||
|
- (void)reloadWithElement:(MPElementEntity *)mainElement;
|
||||||
|
- (void)reloadWithTransientSite:(NSString *)siteName;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
@ -19,47 +19,9 @@
|
|||||||
#import "MPPasswordCell.h"
|
#import "MPPasswordCell.h"
|
||||||
#import "MPiOSAppDelegate.h"
|
#import "MPiOSAppDelegate.h"
|
||||||
#import "MPAppDelegate_Store.h"
|
#import "MPAppDelegate_Store.h"
|
||||||
#import "MPPasswordGeneratedCell.h"
|
|
||||||
#import "MPPasswordStoredCell.h"
|
|
||||||
|
|
||||||
@interface MPPasswordCell()
|
|
||||||
|
|
||||||
@property(strong, nonatomic) IBOutlet UILabel *nameLabel;
|
|
||||||
@property(strong, nonatomic) IBOutlet UIButton *loginButton;
|
|
||||||
|
|
||||||
@property(nonatomic, strong) NSManagedObjectID *elementOID;
|
|
||||||
@end
|
|
||||||
|
|
||||||
@implementation MPPasswordCell
|
@implementation MPPasswordCell
|
||||||
|
|
||||||
+ (NSString *)reuseIdentifier {
|
|
||||||
|
|
||||||
return NSStringFromClass( self );
|
|
||||||
}
|
|
||||||
|
|
||||||
+ (NSString *)reuseIdentifierForElement:(MPElementEntity *)element {
|
|
||||||
|
|
||||||
if ([element isKindOfClass:[MPElementGeneratedEntity class]])
|
|
||||||
return [MPPasswordGeneratedCell reuseIdentifier];
|
|
||||||
|
|
||||||
if ([element isKindOfClass:[MPElementStoredEntity class]])
|
|
||||||
return [MPPasswordStoredCell reuseIdentifier];
|
|
||||||
|
|
||||||
return [self reuseIdentifier];
|
|
||||||
}
|
|
||||||
|
|
||||||
#pragma mark - UITextFieldDelegate
|
|
||||||
|
|
||||||
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
|
|
||||||
|
|
||||||
if (textField == self.contentField && [self.contentField.text length]) {
|
|
||||||
[self.contentField resignFirstResponder];
|
|
||||||
return YES;
|
|
||||||
}
|
|
||||||
|
|
||||||
return NO;
|
|
||||||
}
|
|
||||||
|
|
||||||
#pragma mark - Life cycle
|
#pragma mark - Life cycle
|
||||||
|
|
||||||
- (void)awakeFromNib {
|
- (void)awakeFromNib {
|
||||||
@ -67,120 +29,68 @@
|
|||||||
[super awakeFromNib];
|
[super awakeFromNib];
|
||||||
|
|
||||||
self.layer.cornerRadius = 5;
|
self.layer.cornerRadius = 5;
|
||||||
|
self.layer.shadowOffset = CGSizeZero;
|
||||||
|
self.layer.shadowRadius = 5;
|
||||||
|
self.layer.shadowOpacity = 0;
|
||||||
|
self.layer.shadowColor = [UIColor whiteColor].CGColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)dealloc {
|
- (void)prepareForReuse {
|
||||||
|
|
||||||
[self removeKeyPathObservers];
|
[super prepareForReuse];
|
||||||
|
[self updateAnimated:NO];
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - Actions
|
// Unblocks animations for all CALayer properties (eg. shadowOpacity)
|
||||||
|
- (id<CAAction>)actionForLayer:(CALayer *)layer forKey:(NSString *)event {
|
||||||
|
|
||||||
- (IBAction)doUser:(id)sender {
|
id<CAAction> defaultAction = [super actionForLayer:layer forKey:event];
|
||||||
|
if (defaultAction == (id)[NSNull null] && [event isEqualToString:@"position"])
|
||||||
|
return defaultAction;
|
||||||
|
|
||||||
|
return NSNullToNil(defaultAction);
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - Properties
|
#pragma mark - Properties
|
||||||
|
|
||||||
- (void)setTransientSite:(NSString *)name {
|
- (void)setSelected:(BOOL)selected {
|
||||||
|
|
||||||
_transientSite = name;
|
[super setSelected:selected];
|
||||||
_elementOID = nil;
|
|
||||||
|
|
||||||
[self updateAnimated:YES];
|
[self updateAnimated:YES];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)setElement:(MPElementEntity *)element {
|
- (void)setHighlighted:(BOOL)highlighted {
|
||||||
|
|
||||||
self.elementOID = [element objectID];
|
[super setHighlighted:highlighted];
|
||||||
}
|
|
||||||
|
|
||||||
- (void)setElementOID:(NSManagedObjectID *)elementOID {
|
|
||||||
|
|
||||||
_transientSite = nil;
|
|
||||||
_elementOID = elementOID;
|
|
||||||
|
|
||||||
[self updateAnimated:YES];
|
[self updateAnimated:YES];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (MPElementEntity *)elementInContext:(NSManagedObjectContext *)context {
|
|
||||||
|
|
||||||
NSError *error = nil;
|
|
||||||
MPElementEntity *element = _elementOID? (MPElementEntity *)[context existingObjectWithID:_elementOID error:&error]: nil;
|
|
||||||
if (_elementOID && !element)
|
|
||||||
err(@"Failed to load element: %@", error);
|
|
||||||
|
|
||||||
return element;
|
|
||||||
}
|
|
||||||
|
|
||||||
#pragma mark - Private
|
#pragma mark - Private
|
||||||
|
|
||||||
- (void)updateAnimated:(BOOL)animated {
|
- (void)updateAnimated:(BOOL)animated {
|
||||||
|
|
||||||
Weakify(self);
|
if (![NSThread isMainThread]) {
|
||||||
|
|
||||||
if (self.transientSite) {
|
|
||||||
self.alpha = 1;
|
|
||||||
self.nameLabel.text = self.transientSite;
|
|
||||||
self.contentField.text = nil;
|
|
||||||
|
|
||||||
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
|
||||||
MPKey *key = [MPiOSAppDelegate get].key;
|
|
||||||
if (!key) {
|
|
||||||
self.alpha = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
MPElementType type = [[MPiOSAppDelegate get] activeUserInContext:context].defaultType;
|
|
||||||
if (!type)
|
|
||||||
type = MPElementTypeGeneratedLong;
|
|
||||||
NSString *newContent = [MPAlgorithmDefault generateContentNamed:self.transientSite ofType:type withCounter:1 usingKey:key];
|
|
||||||
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
|
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
|
||||||
self.contentField.text = newContent;
|
[self updateAnimated:animated];
|
||||||
}];
|
}];
|
||||||
}];
|
|
||||||
}
|
|
||||||
else if (self.elementOID) {
|
|
||||||
NSManagedObjectContext *mainContext = [MPiOSAppDelegate managedObjectContextForMainThreadIfReady];
|
|
||||||
[mainContext performBlock:^{
|
|
||||||
[UIView animateWithDuration:animated? 0.3f: 0 animations:^{
|
|
||||||
Strongify(self);
|
|
||||||
NSError *error = nil;
|
|
||||||
MPKey *key = [MPiOSAppDelegate get].key;
|
|
||||||
if (!key) {
|
|
||||||
self.alpha = 0;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
MPElementEntity *element = (MPElementEntity *)[mainContext existingObjectWithID:_elementOID error:&error];
|
|
||||||
if (!element) {
|
|
||||||
err(@"Failed to load element: %@", error);
|
|
||||||
self.alpha = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
self.alpha = 1;
|
|
||||||
[self populateWithElement:element];
|
|
||||||
|
|
||||||
[element resolveContentUsingKey:key result:^(NSString *result) {
|
|
||||||
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
|
|
||||||
Strongify(self);
|
|
||||||
self.contentField.text = result;
|
|
||||||
}];
|
|
||||||
}];
|
|
||||||
}];
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
[UIView animateWithDuration:animated? 0.3f: 0 animations:^{
|
[UIView animateWithDuration:animated? 0.3f: 0 animations:^{
|
||||||
self.alpha = 0;
|
self.layer.shadowOpacity = self.selected? 1: self.highlighted? 0.3f: 0;
|
||||||
}];
|
}];
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)populateWithElement:(MPElementEntity *)element {
|
- (void)reloadWithElement:(MPElementEntity *)mainElement {
|
||||||
|
|
||||||
self.nameLabel.text = element.name;
|
self.nameLabel.text = mainElement.name;
|
||||||
self.contentField.text = nil;
|
}
|
||||||
|
|
||||||
|
- (void)reloadWithTransientSite:(NSString *)siteName {
|
||||||
|
|
||||||
|
self.nameLabel.text = strl( @"%@ - Tap to create", siteName );
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
31
MasterPassword/ObjC/iOS/MPPasswordElementCell.h
Normal file
31
MasterPassword/ObjC/iOS/MPPasswordElementCell.h
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/**
|
||||||
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
||||||
|
*
|
||||||
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
||||||
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*
|
||||||
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
||||||
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// MPPasswordElementCell.h
|
||||||
|
// MPPasswordElementCell
|
||||||
|
//
|
||||||
|
// Created by lhunath on 2014-04-03.
|
||||||
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
#import "MPPasswordCell.h"
|
||||||
|
|
||||||
|
@interface MPPasswordElementCell : MPPasswordCell
|
||||||
|
|
||||||
|
@property(nonatomic, copy) NSString *transientSite;
|
||||||
|
|
||||||
|
- (MPElementEntity *)mainElement;
|
||||||
|
- (MPElementEntity *)elementInContext:(NSManagedObjectContext *)context;
|
||||||
|
- (void)setElement:(MPElementEntity *)element;
|
||||||
|
- (void)reloadData;
|
||||||
|
|
||||||
|
@end
|
93
MasterPassword/ObjC/iOS/MPPasswordElementCell.m
Normal file
93
MasterPassword/ObjC/iOS/MPPasswordElementCell.m
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
/**
|
||||||
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
||||||
|
*
|
||||||
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
||||||
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*
|
||||||
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
||||||
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// MPPasswordElementCell.h
|
||||||
|
// MPPasswordElementCell
|
||||||
|
//
|
||||||
|
// Created by lhunath on 2014-04-03.
|
||||||
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MPPasswordElementCell.h"
|
||||||
|
#import "MPiOSAppDelegate.h"
|
||||||
|
#import "MPAppDelegate_Store.h"
|
||||||
|
|
||||||
|
@implementation MPPasswordElementCell {
|
||||||
|
NSManagedObjectID *_elementOID;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)prepareForReuse {
|
||||||
|
|
||||||
|
_elementOID = nil;
|
||||||
|
_transientSite = nil;
|
||||||
|
|
||||||
|
[super prepareForReuse];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setTransientSite:(NSString *)transientSite {
|
||||||
|
|
||||||
|
if ([_transientSite isEqualToString:transientSite])
|
||||||
|
return;
|
||||||
|
|
||||||
|
dbg(@"transientSite: %@ -> %@", _transientSite, transientSite);
|
||||||
|
|
||||||
|
_transientSite = transientSite;
|
||||||
|
_elementOID = nil;
|
||||||
|
|
||||||
|
[self updateAnimated:YES];
|
||||||
|
[self reloadData];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setElement:(MPElementEntity *)element {
|
||||||
|
|
||||||
|
if ([_elementOID isEqual:element.objectID])
|
||||||
|
return;
|
||||||
|
|
||||||
|
dbg(@"element: %@ -> %@", _elementOID, element.objectID);
|
||||||
|
|
||||||
|
_transientSite = nil;
|
||||||
|
_elementOID = element.objectID;
|
||||||
|
|
||||||
|
[self updateAnimated:YES];
|
||||||
|
[self reloadData];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (MPElementEntity *)mainElement {
|
||||||
|
|
||||||
|
return [self elementInContext:[MPiOSAppDelegate managedObjectContextForMainThreadIfReady]];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (MPElementEntity *)elementInContext:(NSManagedObjectContext *)context {
|
||||||
|
|
||||||
|
if (!_elementOID)
|
||||||
|
return nil;
|
||||||
|
|
||||||
|
NSError *error = nil;
|
||||||
|
MPElementEntity *element = _elementOID? (MPElementEntity *)[context existingObjectWithID:_elementOID error:&error]: nil;
|
||||||
|
if (_elementOID && !element)
|
||||||
|
err(@"Failed to load element: %@", error);
|
||||||
|
|
||||||
|
return element;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)reloadData {
|
||||||
|
|
||||||
|
if (self.transientSite)
|
||||||
|
PearlMainQueue( ^{
|
||||||
|
[self reloadWithTransientSite:self.transientSite];
|
||||||
|
} );
|
||||||
|
else
|
||||||
|
[MPiOSAppDelegate managedObjectContextForMainThreadPerformBlockAndWait:^(NSManagedObjectContext *mainContext) {
|
||||||
|
[self reloadWithElement:[self elementInContext:mainContext]];
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
@ -1,87 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
|
||||||
*
|
|
||||||
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
|
||||||
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
||||||
*
|
|
||||||
* @author Maarten Billemont <lhunath@lyndir.com>
|
|
||||||
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
||||||
*/
|
|
||||||
|
|
||||||
//
|
|
||||||
// MPPasswordGeneratedCell.h
|
|
||||||
// MPPasswordGeneratedCell
|
|
||||||
//
|
|
||||||
// Created by lhunath on 2014-03-19.
|
|
||||||
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
|
||||||
//
|
|
||||||
|
|
||||||
#import "MPPasswordGeneratedCell.h"
|
|
||||||
#import "MPiOSAppDelegate.h"
|
|
||||||
#import "MPAppDelegate_Store.h"
|
|
||||||
|
|
||||||
@interface MPPasswordGeneratedCell()
|
|
||||||
|
|
||||||
@property(strong, nonatomic) IBOutlet UILabel *counterLabel;
|
|
||||||
@property(strong, nonatomic) IBOutlet UIButton *counterButton;
|
|
||||||
@property(strong, nonatomic) IBOutlet UIButton *upgradeButton;
|
|
||||||
|
|
||||||
@end
|
|
||||||
|
|
||||||
@implementation MPPasswordGeneratedCell
|
|
||||||
|
|
||||||
- (void)populateWithElement:(MPElementEntity *)element {
|
|
||||||
|
|
||||||
[super populateWithElement:element];
|
|
||||||
|
|
||||||
MPElementGeneratedEntity *generatedElement = [self generatedElement:element];
|
|
||||||
self.counterLabel.text = strf(@"%lu", (unsigned long)generatedElement.counter);
|
|
||||||
|
|
||||||
if (element.requiresExplicitMigration) {
|
|
||||||
self.upgradeButton.alpha = 1;
|
|
||||||
self.counterButton.alpha = 0;
|
|
||||||
} else {
|
|
||||||
self.upgradeButton.alpha = 0;
|
|
||||||
self.counterButton.alpha = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#pragma mark - Actions
|
|
||||||
|
|
||||||
- (IBAction)doUpgrade:(UIButton *)sender {
|
|
||||||
|
|
||||||
[MPiOSAppDelegate managedObjectContextForMainThreadPerformBlock:^(NSManagedObjectContext *mainContext) {
|
|
||||||
[[self elementInContext:mainContext] migrateExplicitly:YES];
|
|
||||||
[mainContext saveToStore];
|
|
||||||
|
|
||||||
[self updateAnimated:YES];
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
- (IBAction)doIncrementCounter:(UIButton *)sender {
|
|
||||||
|
|
||||||
[MPiOSAppDelegate managedObjectContextForMainThreadPerformBlock:^(NSManagedObjectContext *mainContext) {
|
|
||||||
++[self elementInContext:mainContext].counter;
|
|
||||||
[mainContext saveToStore];
|
|
||||||
|
|
||||||
[self updateAnimated:YES];
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
#pragma mark - Properties
|
|
||||||
|
|
||||||
- (MPElementGeneratedEntity *)elementInContext:(NSManagedObjectContext *)context {
|
|
||||||
|
|
||||||
return [self generatedElement:[super elementInContext:context]];
|
|
||||||
}
|
|
||||||
|
|
||||||
- (MPElementGeneratedEntity *)generatedElement:(MPElementEntity *)element {
|
|
||||||
|
|
||||||
NSAssert([element isKindOfClass:[MPElementGeneratedEntity class]], @"Element is not of generated type: %@", element.name);
|
|
||||||
if (![element isKindOfClass:[MPElementGeneratedEntity class]])
|
|
||||||
return nil;
|
|
||||||
|
|
||||||
return (MPElementGeneratedEntity *)element;
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
|
44
MasterPassword/ObjC/iOS/MPPasswordLargeCell.h
Normal file
44
MasterPassword/ObjC/iOS/MPPasswordLargeCell.h
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
/**
|
||||||
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
||||||
|
*
|
||||||
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
||||||
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*
|
||||||
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
||||||
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// MPAvatarCell.h
|
||||||
|
// MPAvatarCell
|
||||||
|
//
|
||||||
|
// Created by lhunath on 2014-03-11.
|
||||||
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
#import "MPEntities.h"
|
||||||
|
#import "MPCell.h"
|
||||||
|
#import "MPPasswordCell.h"
|
||||||
|
|
||||||
|
typedef NS_ENUM (NSUInteger, MPContentFieldMode) {
|
||||||
|
MPContentFieldModePassword,
|
||||||
|
MPContentFieldModeUser,
|
||||||
|
};
|
||||||
|
|
||||||
|
@interface MPPasswordLargeCell : MPPasswordCell <UITextFieldDelegate>
|
||||||
|
|
||||||
|
@property(nonatomic) MPElementType type;
|
||||||
|
@property(nonatomic) MPContentFieldMode contentFieldMode;
|
||||||
|
@property(nonatomic, strong) IBOutlet UILabel *typeLabel;
|
||||||
|
@property(nonatomic, strong) IBOutlet UITextField *contentField;
|
||||||
|
@property(nonatomic, strong) IBOutlet UIButton *upgradeButton;
|
||||||
|
|
||||||
|
+ (instancetype)dequeueCellWithType:(MPElementType)type fromCollectionView:(UICollectionView *)collectionView atIndexPath:(NSIndexPath *)indexPath;
|
||||||
|
|
||||||
|
- (void)resolveContentOfCellTypeForTransientSite:(NSString *)siteName usingKey:(MPKey *)key result:(void (^)(NSString *))resultBlock;
|
||||||
|
- (void)resolveContentOfCellTypeForElement:(MPElementEntity *)element usingKey:(MPKey *)key result:(void (^)(NSString *))resultBlock;
|
||||||
|
|
||||||
|
- (MPElementEntity *)saveContentTypeWithElement:(MPElementEntity *)element saveInContext:(NSManagedObjectContext *)context;
|
||||||
|
|
||||||
|
@end
|
213
MasterPassword/ObjC/iOS/MPPasswordLargeCell.m
Normal file
213
MasterPassword/ObjC/iOS/MPPasswordLargeCell.m
Normal file
@ -0,0 +1,213 @@
|
|||||||
|
/**
|
||||||
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
||||||
|
*
|
||||||
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
||||||
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*
|
||||||
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
||||||
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// MPAvatarCell.h
|
||||||
|
// MPAvatarCell
|
||||||
|
//
|
||||||
|
// Created by lhunath on 2014-03-11.
|
||||||
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MPPasswordLargeCell.h"
|
||||||
|
#import "MPiOSAppDelegate.h"
|
||||||
|
#import "MPAppDelegate_Store.h"
|
||||||
|
#import "MPPasswordLargeGeneratedCell.h"
|
||||||
|
#import "MPPasswordLargeStoredCell.h"
|
||||||
|
#import "MPPasswordTypesCell.h"
|
||||||
|
|
||||||
|
@implementation MPPasswordLargeCell
|
||||||
|
|
||||||
|
+ (instancetype)dequeueCellWithType:(MPElementType)type fromCollectionView:(UICollectionView *)collectionView
|
||||||
|
atIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
|
NSString *reuseIdentifier;
|
||||||
|
if (type & MPElementTypeClassGenerated)
|
||||||
|
reuseIdentifier = NSStringFromClass( [MPPasswordLargeGeneratedCell class] );
|
||||||
|
else if (type & MPElementTypeClassStored)
|
||||||
|
reuseIdentifier = NSStringFromClass( [MPPasswordLargeStoredCell class] );
|
||||||
|
else
|
||||||
|
Throw(@"Unexpected password type: %@", [MPAlgorithmDefault nameOfType:type]);
|
||||||
|
|
||||||
|
MPPasswordLargeCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];
|
||||||
|
cell.type = type;
|
||||||
|
|
||||||
|
return cell;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - UITextFieldDelegate
|
||||||
|
|
||||||
|
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
|
||||||
|
|
||||||
|
[textField resignFirstResponder];
|
||||||
|
return YES;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)textFieldDidEndEditing:(UITextField *)textField {
|
||||||
|
|
||||||
|
if (textField == self.contentField) {
|
||||||
|
NSString *newContent = textField.text;
|
||||||
|
|
||||||
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
|
MPElementEntity *element = [[MPPasswordElementCell findAsSuperviewOf:self] elementInContext:context];
|
||||||
|
|
||||||
|
switch (self.contentFieldMode) {
|
||||||
|
case MPContentFieldModePassword:
|
||||||
|
break;
|
||||||
|
case MPContentFieldModeUser: {
|
||||||
|
element.loginName = newContent;
|
||||||
|
[context saveToStore];
|
||||||
|
|
||||||
|
PearlMainQueue( ^{
|
||||||
|
[self updateAnimated:YES];
|
||||||
|
[PearlOverlay showTemporaryOverlayWithTitle:@"Login Updated" dismissAfter:2];
|
||||||
|
} );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - Life cycle
|
||||||
|
|
||||||
|
- (void)prepareForReuse {
|
||||||
|
|
||||||
|
_contentFieldMode = 0;
|
||||||
|
|
||||||
|
[super prepareForReuse];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)reloadWithTransientSite:(NSString *)siteName {
|
||||||
|
|
||||||
|
[super reloadWithTransientSite:siteName];
|
||||||
|
|
||||||
|
self.loginButton.alpha = 0;
|
||||||
|
self.upgradeButton.alpha = 0;
|
||||||
|
self.contentField.enabled = NO;
|
||||||
|
self.contentField.placeholder = strl( @"Tap to enter password" );
|
||||||
|
self.typeLabel.text = [MPAlgorithmDefault nameOfType:self.type];
|
||||||
|
|
||||||
|
[self resolveContentOfCellTypeForTransientSite:siteName usingKey:[MPiOSAppDelegate get].key result:^(NSString *string) {
|
||||||
|
PearlMainQueue( ^{ self.contentField.text = string; } );
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)reloadWithElement:(MPElementEntity *)mainElement {
|
||||||
|
|
||||||
|
[super reloadWithElement:mainElement];
|
||||||
|
|
||||||
|
self.loginButton.alpha = 1;
|
||||||
|
self.typeLabel.text = [mainElement.algorithm nameOfType:self.type];
|
||||||
|
|
||||||
|
if (mainElement.requiresExplicitMigration)
|
||||||
|
self.upgradeButton.alpha = 1;
|
||||||
|
else
|
||||||
|
self.upgradeButton.alpha = 0;
|
||||||
|
|
||||||
|
switch (self.contentFieldMode) {
|
||||||
|
case MPContentFieldModePassword: {
|
||||||
|
if (self.type & MPElementTypeClassStored) {
|
||||||
|
self.contentField.enabled = YES;
|
||||||
|
self.contentField.placeholder = strl( @"Enter custom password" );
|
||||||
|
}
|
||||||
|
else if (self.type & MPElementTypeClassGenerated) {
|
||||||
|
self.contentField.enabled = NO;
|
||||||
|
self.contentField.placeholder = strl( @"Generating..." );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
self.contentField.enabled = NO;
|
||||||
|
self.contentField.placeholder = nil;
|
||||||
|
}
|
||||||
|
self.contentField.text = nil;
|
||||||
|
|
||||||
|
MPKey *key = [MPiOSAppDelegate get].key;
|
||||||
|
|
||||||
|
if (self.type == mainElement.type)
|
||||||
|
[mainElement resolveContentUsingKey:key result:^(NSString *string) {
|
||||||
|
PearlMainQueue( ^{ self.contentField.text = string; } );
|
||||||
|
}];
|
||||||
|
else
|
||||||
|
[self resolveContentOfCellTypeForElement:mainElement usingKey:key result:^(NSString *string) {
|
||||||
|
PearlMainQueue( ^{ self.contentField.text = string; } );
|
||||||
|
}];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case MPContentFieldModeUser: {
|
||||||
|
self.contentField.enabled = YES;
|
||||||
|
self.contentField.placeholder = strl( @"Enter login name" );
|
||||||
|
self.contentField.text = mainElement.loginName;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)resolveContentOfCellTypeForTransientSite:(NSString *)siteName usingKey:(MPKey *)key result:(void (^)(NSString *))resultBlock {
|
||||||
|
|
||||||
|
resultBlock( nil );
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)resolveContentOfCellTypeForElement:(MPElementEntity *)element usingKey:(MPKey *)key result:(void (^)(NSString *))resultBlock {
|
||||||
|
|
||||||
|
resultBlock( nil );
|
||||||
|
}
|
||||||
|
|
||||||
|
- (MPElementEntity *)saveContentTypeWithElement:(MPElementEntity *)element saveInContext:(NSManagedObjectContext *)context {
|
||||||
|
|
||||||
|
return [[MPiOSAppDelegate get] changeElement:element saveInContext:context toType:self.type];
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - Actions
|
||||||
|
|
||||||
|
- (IBAction)doUser:(id)sender {
|
||||||
|
|
||||||
|
switch (self.contentFieldMode) {
|
||||||
|
case MPContentFieldModePassword: {
|
||||||
|
self.contentFieldMode = MPContentFieldModeUser;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case MPContentFieldModeUser: {
|
||||||
|
self.contentFieldMode = MPContentFieldModePassword;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- (IBAction)doUpgrade:(UIButton *)sender {
|
||||||
|
|
||||||
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
|
if ([[[MPPasswordElementCell findAsSuperviewOf:self] elementInContext:context] migrateExplicitly:YES]) {
|
||||||
|
[context saveToStore];
|
||||||
|
|
||||||
|
PearlMainQueue( ^{
|
||||||
|
[[MPPasswordElementCell findAsSuperviewOf:self] reloadData];
|
||||||
|
[PearlOverlay showTemporaryOverlayWithTitle:@"Site Upgraded" dismissAfter:2];
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
PearlMainQueue( ^{
|
||||||
|
[PearlOverlay showTemporaryOverlayWithTitle:@"Site Not Upgraded" dismissAfter:2];
|
||||||
|
} );
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - Properties
|
||||||
|
|
||||||
|
- (void)setContentFieldMode:(MPContentFieldMode)contentFieldMode {
|
||||||
|
|
||||||
|
if (_contentFieldMode == contentFieldMode)
|
||||||
|
return;
|
||||||
|
|
||||||
|
_contentFieldMode = contentFieldMode;
|
||||||
|
|
||||||
|
[[MPPasswordElementCell findAsSuperviewOf:self] reloadData];
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
@ -9,18 +9,19 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
//
|
//
|
||||||
// MPPasswordGeneratedCell.h
|
// MPPasswordLargeGeneratedCell.h
|
||||||
// MPPasswordGeneratedCell
|
// MPPasswordLargeGeneratedCell
|
||||||
//
|
//
|
||||||
// Created by lhunath on 2014-03-19.
|
// Created by lhunath on 2014-03-19.
|
||||||
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
#import "MPPasswordCell.h"
|
#import "MPPasswordLargeCell.h"
|
||||||
|
|
||||||
@interface MPPasswordGeneratedCell : MPPasswordCell
|
@interface MPPasswordLargeGeneratedCell : MPPasswordLargeCell
|
||||||
|
|
||||||
- (MPElementGeneratedEntity *)elementInContext:(NSManagedObjectContext *)context;
|
@property(strong, nonatomic) IBOutlet UILabel *counterLabel;
|
||||||
|
@property(strong, nonatomic) IBOutlet UIButton *counterButton;
|
||||||
|
|
||||||
@end
|
@end
|
139
MasterPassword/ObjC/iOS/MPPasswordLargeGeneratedCell.m
Normal file
139
MasterPassword/ObjC/iOS/MPPasswordLargeGeneratedCell.m
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
/**
|
||||||
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
||||||
|
*
|
||||||
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
||||||
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*
|
||||||
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
||||||
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// MPPasswordLargeGeneratedCell.h
|
||||||
|
// MPPasswordLargeGeneratedCell
|
||||||
|
//
|
||||||
|
// Created by lhunath on 2014-03-19.
|
||||||
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MPPasswordLargeGeneratedCell.h"
|
||||||
|
#import "MPiOSAppDelegate.h"
|
||||||
|
#import "MPAppDelegate_Store.h"
|
||||||
|
#import "MPPasswordElementCell.h"
|
||||||
|
|
||||||
|
@implementation MPPasswordLargeGeneratedCell
|
||||||
|
|
||||||
|
- (void)awakeFromNib {
|
||||||
|
|
||||||
|
[super awakeFromNib];
|
||||||
|
|
||||||
|
UILongPressGestureRecognizer *gestureRecognizer = [[UILongPressGestureRecognizer alloc]
|
||||||
|
initWithTarget:self action:@selector(doResetCounterRecognizer:)];
|
||||||
|
[self.counterButton addGestureRecognizer:gestureRecognizer];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)reloadWithElement:(MPElementEntity *)mainElement {
|
||||||
|
|
||||||
|
[super reloadWithElement:mainElement];
|
||||||
|
|
||||||
|
MPElementGeneratedEntity *generatedElement = [self generatedElement:mainElement];
|
||||||
|
if (generatedElement)
|
||||||
|
self.counterLabel.text = strf( @"%lu", (unsigned long)generatedElement.counter );
|
||||||
|
else
|
||||||
|
self.counterLabel.text = @"1";
|
||||||
|
|
||||||
|
if (!mainElement || mainElement.requiresExplicitMigration) {
|
||||||
|
self.counterLabel.alpha = 0;
|
||||||
|
self.counterButton.alpha = 0;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
self.counterLabel.alpha = 1;
|
||||||
|
self.counterButton.alpha = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)resolveContentOfCellTypeForTransientSite:(NSString *)siteName usingKey:(MPKey *)key result:(void (^)(NSString *))resultBlock {
|
||||||
|
|
||||||
|
PearlNotMainQueue( ^{
|
||||||
|
resultBlock( [MPAlgorithmDefault generateContentNamed:siteName ofType:self.type withCounter:1 usingKey:key] );
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)resolveContentOfCellTypeForElement:(MPElementEntity *)element usingKey:(MPKey *)key result:(void (^)(NSString *))resultBlock {
|
||||||
|
|
||||||
|
id<MPAlgorithm> algorithm = element.algorithm;
|
||||||
|
NSString *siteName = element.name;
|
||||||
|
|
||||||
|
PearlNotMainQueue( ^{
|
||||||
|
resultBlock( [algorithm generateContentNamed:siteName ofType:self.type withCounter:1 usingKey:key] );
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
|
- (MPElementEntity *)saveContentTypeWithElement:(MPElementEntity *)element saveInContext:(NSManagedObjectContext *)context {
|
||||||
|
|
||||||
|
element = [super saveContentTypeWithElement:element saveInContext:context];
|
||||||
|
|
||||||
|
MPElementGeneratedEntity *generatedElement = [self generatedElement:element];
|
||||||
|
if (generatedElement) {
|
||||||
|
generatedElement.counter = [self.counterLabel.text intValue];
|
||||||
|
[context saveToStore];
|
||||||
|
}
|
||||||
|
|
||||||
|
return element;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - Actions
|
||||||
|
|
||||||
|
- (IBAction)doIncrementCounter:(UIButton *)sender {
|
||||||
|
|
||||||
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
|
MPElementGeneratedEntity *generatedElement = [self generatedElementInContext:context];
|
||||||
|
if (!generatedElement)
|
||||||
|
return;
|
||||||
|
|
||||||
|
++generatedElement.counter;
|
||||||
|
[context saveToStore];
|
||||||
|
|
||||||
|
PearlMainQueue( ^{
|
||||||
|
[self updateAnimated:YES];
|
||||||
|
[PearlOverlay showTemporaryOverlayWithTitle:@"Counter Incremented" dismissAfter:2];
|
||||||
|
} );
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)doResetCounterRecognizer:(UILongPressGestureRecognizer *)gestureRecognizer {
|
||||||
|
|
||||||
|
if (gestureRecognizer.state != UIGestureRecognizerStateEnded)
|
||||||
|
return;
|
||||||
|
|
||||||
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
|
MPElementGeneratedEntity *generatedElement = [self generatedElementInContext:context];
|
||||||
|
if (!generatedElement)
|
||||||
|
return;
|
||||||
|
|
||||||
|
generatedElement.counter = 1;
|
||||||
|
[context saveToStore];
|
||||||
|
|
||||||
|
PearlMainQueue( ^{
|
||||||
|
[self updateAnimated:YES];
|
||||||
|
[PearlOverlay showTemporaryOverlayWithTitle:@"Counter Reset" dismissAfter:2];
|
||||||
|
} );
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - Properties
|
||||||
|
|
||||||
|
- (MPElementGeneratedEntity *)generatedElementInContext:(NSManagedObjectContext *)context {
|
||||||
|
|
||||||
|
return [self generatedElement:[[MPPasswordElementCell findAsSuperviewOf:self] elementInContext:context]];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (MPElementGeneratedEntity *)generatedElement:(MPElementEntity *)element {
|
||||||
|
|
||||||
|
if (![element isKindOfClass:[MPElementGeneratedEntity class]])
|
||||||
|
return nil;
|
||||||
|
|
||||||
|
return (MPElementGeneratedEntity *)element;
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
@ -9,18 +9,16 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
//
|
//
|
||||||
// MPPasswordStoredCell.h
|
// MPPasswordLargeStoredCell.h
|
||||||
// MPPasswordStoredCell
|
// MPPasswordLargeStoredCell
|
||||||
//
|
//
|
||||||
// Created by lhunath on 2014-03-19.
|
// Created by lhunath on 2014-03-19.
|
||||||
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
#import "MPPasswordCell.h"
|
#import "MPPasswordLargeCell.h"
|
||||||
|
|
||||||
@interface MPPasswordStoredCell : MPPasswordCell
|
@interface MPPasswordLargeStoredCell : MPPasswordLargeCell
|
||||||
|
|
||||||
- (MPElementStoredEntity *)elementInContext:(NSManagedObjectContext *)context;
|
|
||||||
|
|
||||||
@end
|
@end
|
112
MasterPassword/ObjC/iOS/MPPasswordLargeStoredCell.m
Normal file
112
MasterPassword/ObjC/iOS/MPPasswordLargeStoredCell.m
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
/**
|
||||||
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
||||||
|
*
|
||||||
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
||||||
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*
|
||||||
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
||||||
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// MPPasswordLargeGeneratedCell.h
|
||||||
|
// MPPasswordLargeGeneratedCell
|
||||||
|
//
|
||||||
|
// Created by lhunath on 2014-03-19.
|
||||||
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MPPasswordLargeStoredCell.h"
|
||||||
|
#import "MPiOSAppDelegate.h"
|
||||||
|
#import "MPAppDelegate_Store.h"
|
||||||
|
#import "MPPasswordElementCell.h"
|
||||||
|
|
||||||
|
@interface MPPasswordLargeStoredCell()
|
||||||
|
|
||||||
|
@property(strong, nonatomic) IBOutlet UIButton *editButton;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation MPPasswordLargeStoredCell
|
||||||
|
|
||||||
|
#pragma mark - Lifecycle
|
||||||
|
|
||||||
|
- (void)resolveContentOfCellTypeForElement:(MPElementEntity *)element usingKey:(MPKey *)key result:(void (^)(NSString *))resultBlock {
|
||||||
|
|
||||||
|
if (element.type & MPElementTypeClassStored)
|
||||||
|
[element resolveContentUsingKey:key result:resultBlock];
|
||||||
|
else
|
||||||
|
[super resolveContentOfCellTypeForElement:element usingKey:key result:resultBlock];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (MPElementEntity *)saveContentTypeWithElement:(MPElementEntity *)element saveInContext:(NSManagedObjectContext *)context {
|
||||||
|
|
||||||
|
element = [super saveContentTypeWithElement:element saveInContext:context];
|
||||||
|
|
||||||
|
MPElementStoredEntity *storedElement = [self storedElement:element];
|
||||||
|
if (storedElement) {
|
||||||
|
storedElement.contentObject = self.contentField.text;
|
||||||
|
[context saveToStore];
|
||||||
|
}
|
||||||
|
|
||||||
|
return element;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#pragma mark - Actions
|
||||||
|
|
||||||
|
- (IBAction)doEditContent:(UIButton *)sender {
|
||||||
|
|
||||||
|
UITextField *field = self.contentField;
|
||||||
|
field.enabled = YES;
|
||||||
|
[field becomeFirstResponder];
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - UITextFieldDelegate
|
||||||
|
|
||||||
|
- (void)textFieldDidEndEditing:(UITextField *)textField {
|
||||||
|
|
||||||
|
[super textFieldDidEndEditing:textField];
|
||||||
|
|
||||||
|
if (textField == self.contentField) {
|
||||||
|
NSString *newContent = textField.text;
|
||||||
|
|
||||||
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
|
MPElementStoredEntity *storedElement = [self storedElementInContext:context];
|
||||||
|
if (!storedElement)
|
||||||
|
return;
|
||||||
|
|
||||||
|
switch (self.contentFieldMode) {
|
||||||
|
case MPContentFieldModePassword: {
|
||||||
|
storedElement.contentObject = newContent;
|
||||||
|
[context saveToStore];
|
||||||
|
|
||||||
|
PearlMainQueue( ^{
|
||||||
|
[self updateAnimated:YES];
|
||||||
|
[PearlOverlay showTemporaryOverlayWithTitle:@"Password Updated" dismissAfter:2];
|
||||||
|
} );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case MPContentFieldModeUser:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - Properties
|
||||||
|
|
||||||
|
- (MPElementStoredEntity *)storedElementInContext:(NSManagedObjectContext *)context {
|
||||||
|
|
||||||
|
return [self storedElement:[[MPPasswordElementCell findAsSuperviewOf:self] elementInContext:context]];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (MPElementStoredEntity *)storedElement:(MPElementEntity *)element {
|
||||||
|
|
||||||
|
if (![element isKindOfClass:[MPElementStoredEntity class]])
|
||||||
|
return nil;
|
||||||
|
|
||||||
|
return (MPElementStoredEntity *)element;
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
33
MasterPassword/ObjC/iOS/MPPasswordSmallCell.h
Normal file
33
MasterPassword/ObjC/iOS/MPPasswordSmallCell.h
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/**
|
||||||
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
||||||
|
*
|
||||||
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
||||||
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*
|
||||||
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
||||||
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// MPPasswordSmallCell.h
|
||||||
|
// MPPasswordSmallCell
|
||||||
|
//
|
||||||
|
// Created by lhunath on 2014-03-28.
|
||||||
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
#import "MPPasswordCell.h"
|
||||||
|
|
||||||
|
@interface MPPasswordSmallCell : MPPasswordElementCell
|
||||||
|
|
||||||
|
+ (instancetype)dequeueCellForElement:(MPElementEntity *)element
|
||||||
|
fromCollectionView:(UICollectionView *)collectionView atIndexPath:(NSIndexPath *)indexPath;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
@interface MPPasswordSmallGeneratedCell : MPPasswordSmallCell
|
||||||
|
@end
|
||||||
|
|
||||||
|
@interface MPPasswordSmallStoredCell : MPPasswordSmallCell
|
||||||
|
@end
|
48
MasterPassword/ObjC/iOS/MPPasswordSmallCell.m
Normal file
48
MasterPassword/ObjC/iOS/MPPasswordSmallCell.m
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
/**
|
||||||
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
||||||
|
*
|
||||||
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
||||||
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*
|
||||||
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
||||||
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// MPPasswordSmallCell.h
|
||||||
|
// MPPasswordSmallCell
|
||||||
|
//
|
||||||
|
// Created by lhunath on 2014-03-28.
|
||||||
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MPPasswordElementCell.h"
|
||||||
|
#import "MPPasswordSmallCell.h"
|
||||||
|
|
||||||
|
@implementation MPPasswordSmallCell {
|
||||||
|
}
|
||||||
|
|
||||||
|
+ (instancetype)dequeueCellForElement:(MPElementEntity *)element fromCollectionView:(UICollectionView *)collectionView
|
||||||
|
atIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
|
NSString *reuseIdentifier;
|
||||||
|
if (element.type & MPElementTypeClassGenerated)
|
||||||
|
reuseIdentifier = NSStringFromClass( [MPPasswordSmallGeneratedCell class] );
|
||||||
|
else if (element.type & MPElementTypeClassStored)
|
||||||
|
reuseIdentifier = NSStringFromClass( [MPPasswordSmallStoredCell class] );
|
||||||
|
else
|
||||||
|
Throw(@"Unexpected password type: %@", [MPAlgorithmDefault nameOfType:element.type]);
|
||||||
|
|
||||||
|
MPPasswordSmallCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];
|
||||||
|
[cell setElement:element];
|
||||||
|
|
||||||
|
return cell;
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation MPPasswordSmallGeneratedCell
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation MPPasswordSmallStoredCell
|
||||||
|
@end
|
@ -1,73 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
|
||||||
*
|
|
||||||
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
|
||||||
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
||||||
*
|
|
||||||
* @author Maarten Billemont <lhunath@lyndir.com>
|
|
||||||
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
||||||
*/
|
|
||||||
|
|
||||||
//
|
|
||||||
// MPPasswordGeneratedCell.h
|
|
||||||
// MPPasswordGeneratedCell
|
|
||||||
//
|
|
||||||
// Created by lhunath on 2014-03-19.
|
|
||||||
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
|
||||||
//
|
|
||||||
|
|
||||||
#import "MPPasswordStoredCell.h"
|
|
||||||
#import "MPiOSAppDelegate.h"
|
|
||||||
#import "MPAppDelegate_Store.h"
|
|
||||||
|
|
||||||
@interface MPPasswordStoredCell()
|
|
||||||
|
|
||||||
@property(strong, nonatomic) IBOutlet UIButton *editButton;
|
|
||||||
|
|
||||||
@end
|
|
||||||
|
|
||||||
@implementation MPPasswordStoredCell
|
|
||||||
|
|
||||||
#pragma mark - Actions
|
|
||||||
|
|
||||||
- (IBAction)doEditContent:(UIButton *)sender {
|
|
||||||
|
|
||||||
self.contentField.enabled = YES;
|
|
||||||
[self.contentField becomeFirstResponder];
|
|
||||||
}
|
|
||||||
|
|
||||||
#pragma mark - UITextFieldDelegate
|
|
||||||
|
|
||||||
- (void)textFieldDidEndEditing:(UITextField *)textField {
|
|
||||||
|
|
||||||
[super textFieldDidEndEditing:textField];
|
|
||||||
|
|
||||||
if (textField == self.contentField) {
|
|
||||||
[MPiOSAppDelegate managedObjectContextForMainThreadPerformBlock:^(NSManagedObjectContext *mainContext) {
|
|
||||||
if (mainContext) {
|
|
||||||
[[self elementInContext:mainContext] setContentObject:self.contentField.text];
|
|
||||||
[mainContext saveToStore];
|
|
||||||
}
|
|
||||||
|
|
||||||
[self updateAnimated:YES];
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#pragma mark - Properties
|
|
||||||
|
|
||||||
- (MPElementStoredEntity *)elementInContext:(NSManagedObjectContext *)context {
|
|
||||||
|
|
||||||
return [self storedElement:[super elementInContext:context]];
|
|
||||||
}
|
|
||||||
|
|
||||||
- (MPElementStoredEntity *)storedElement:(MPElementEntity *)element {
|
|
||||||
|
|
||||||
NSAssert([element isKindOfClass:[MPElementStoredEntity class]], @"Element is not of generated type: %@", element.name);
|
|
||||||
if (![element isKindOfClass:[MPElementStoredEntity class]])
|
|
||||||
return nil;
|
|
||||||
|
|
||||||
return (MPElementStoredEntity *)element;
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
|
34
MasterPassword/ObjC/iOS/MPPasswordTypesCell.h
Normal file
34
MasterPassword/ObjC/iOS/MPPasswordTypesCell.h
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/**
|
||||||
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
||||||
|
*
|
||||||
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
||||||
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*
|
||||||
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
||||||
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// MPPasswordTypesCell.h
|
||||||
|
// MPPasswordTypesCell
|
||||||
|
//
|
||||||
|
// Created by lhunath on 2014-03-27.
|
||||||
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import <Foundation/Foundation.h>
|
||||||
|
#import "MPCell.h"
|
||||||
|
#import "MPPasswordCell.h"
|
||||||
|
#import "MPPasswordElementCell.h"
|
||||||
|
|
||||||
|
@interface MPPasswordTypesCell : MPPasswordElementCell <UICollectionViewDataSource, UICollectionViewDelegateFlowLayout>
|
||||||
|
|
||||||
|
@property(nonatomic, strong) IBOutlet UICollectionView *contentCollectionView;
|
||||||
|
@property(nonatomic, strong) id<MPAlgorithm> algorithm;
|
||||||
|
|
||||||
|
+ (instancetype)dequeueCellForElement:(MPElementEntity *)element
|
||||||
|
fromCollectionView:(UICollectionView *)collectionView atIndexPath:(NSIndexPath *)indexPath;
|
||||||
|
+ (instancetype)dequeueCellForTransientSite:(NSString *)siteName
|
||||||
|
fromCollectionView:(UICollectionView *)collectionView atIndexPath:(NSIndexPath *)indexPath;
|
||||||
|
|
||||||
|
@end
|
218
MasterPassword/ObjC/iOS/MPPasswordTypesCell.m
Normal file
218
MasterPassword/ObjC/iOS/MPPasswordTypesCell.m
Normal file
@ -0,0 +1,218 @@
|
|||||||
|
/**
|
||||||
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
||||||
|
*
|
||||||
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
||||||
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*
|
||||||
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
||||||
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// MPPasswordTypesCell.h
|
||||||
|
// MPPasswordTypesCell
|
||||||
|
//
|
||||||
|
// Created by lhunath on 2014-03-27.
|
||||||
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#import "MPPasswordTypesCell.h"
|
||||||
|
#import "MPPasswordLargeCell.h"
|
||||||
|
#import "MPiOSAppDelegate.h"
|
||||||
|
#import "MPAppDelegate_Store.h"
|
||||||
|
|
||||||
|
@implementation MPPasswordTypesCell
|
||||||
|
|
||||||
|
#pragma mark - Lifecycle
|
||||||
|
|
||||||
|
+ (instancetype)dequeueCellForTransientSite:(NSString *)siteName fromCollectionView:(UICollectionView *)collectionView
|
||||||
|
atIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
|
MPPasswordTypesCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:NSStringFromClass( [MPPasswordTypesCell class] )
|
||||||
|
forIndexPath:indexPath];
|
||||||
|
[cell setTransientSite:siteName];
|
||||||
|
|
||||||
|
return cell;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ (instancetype)dequeueCellForElement:(MPElementEntity *)element fromCollectionView:(UICollectionView *)collectionView
|
||||||
|
atIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
|
MPPasswordTypesCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:NSStringFromClass( [MPPasswordTypesCell class] )
|
||||||
|
forIndexPath:indexPath];
|
||||||
|
[cell setElement:element];
|
||||||
|
|
||||||
|
return cell;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)awakeFromNib {
|
||||||
|
|
||||||
|
[super awakeFromNib];
|
||||||
|
|
||||||
|
self.backgroundColor = [UIColor clearColor];
|
||||||
|
self.layer.shadowColor = [UIColor clearColor].CGColor;
|
||||||
|
|
||||||
|
[self prepareForReuse];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)prepareForReuse {
|
||||||
|
|
||||||
|
_algorithm = MPAlgorithmDefault;
|
||||||
|
|
||||||
|
[super prepareForReuse];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)reloadWithTransientSite:(NSString *)siteName {
|
||||||
|
|
||||||
|
[super reloadWithTransientSite:siteName];
|
||||||
|
|
||||||
|
[self.contentCollectionView reloadData];
|
||||||
|
NSIndexPath *visibleIndexPath = [self contentIndexPathForType:
|
||||||
|
IfElse([[MPiOSAppDelegate get] activeUserForMainThread].defaultType, MPElementTypeGeneratedLong)];
|
||||||
|
[self.contentCollectionView scrollToItemAtIndexPath:visibleIndexPath atScrollPosition:NO
|
||||||
|
animated:UICollectionViewScrollPositionCenteredHorizontally];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)reloadWithElement:(MPElementEntity *)mainElement {
|
||||||
|
|
||||||
|
[super reloadWithElement:mainElement];
|
||||||
|
|
||||||
|
self.algorithm = IfNotNilElse([self mainElement].algorithm, MPAlgorithmDefault);
|
||||||
|
|
||||||
|
[self.contentCollectionView reloadData];
|
||||||
|
NSIndexPath *visibleIndexPath = [self contentIndexPathForType:mainElement.type];
|
||||||
|
[self.contentCollectionView scrollToItemAtIndexPath:visibleIndexPath atScrollPosition:NO
|
||||||
|
animated:UICollectionViewScrollPositionCenteredHorizontally];
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - UICollectionViewDataSource
|
||||||
|
|
||||||
|
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
|
||||||
|
|
||||||
|
if (!self.algorithm)
|
||||||
|
dbg_return_tr(0, @, @(section));
|
||||||
|
|
||||||
|
NSInteger types = 1;
|
||||||
|
|
||||||
|
MPElementType type = [self typeForContentIndexPath:[NSIndexPath indexPathForItem:0 inSection:0]];
|
||||||
|
for (MPElementType nextType = type; type != (nextType = [self.algorithm nextType:nextType]);)
|
||||||
|
++types;
|
||||||
|
|
||||||
|
dbg_return_tr(types, @, @(section));
|
||||||
|
}
|
||||||
|
|
||||||
|
- (MPPasswordLargeCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
|
MPPasswordLargeCell *cell = [MPPasswordLargeCell dequeueCellWithType:[self typeForContentIndexPath:indexPath]
|
||||||
|
fromCollectionView:collectionView atIndexPath:indexPath];
|
||||||
|
if (self.transientSite)
|
||||||
|
[cell reloadWithTransientSite:self.transientSite];
|
||||||
|
else
|
||||||
|
[cell reloadWithElement:self.mainElement];
|
||||||
|
|
||||||
|
dbg_return(cell, indexPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - UICollectionViewDelegateFlowLayout
|
||||||
|
|
||||||
|
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
|
UICollectionView *passwordCollectionView = [UICollectionView findAsSuperviewOf:self];
|
||||||
|
[passwordCollectionView.delegate collectionView:passwordCollectionView didSelectItemAtIndexPath:[passwordCollectionView indexPathForCell:self]];
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - UIScrollViewDelegate
|
||||||
|
|
||||||
|
- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity
|
||||||
|
targetContentOffset:(inout CGPoint *)targetContentOffset {
|
||||||
|
|
||||||
|
if (scrollView == self.contentCollectionView) {
|
||||||
|
NSIndexPath *targetIndexPath = [self.contentCollectionView indexPathForItemAtPoint:
|
||||||
|
CGPointPlusCGPoint( *targetContentOffset, self.contentCollectionView.center )];
|
||||||
|
*targetContentOffset = CGPointFromCGRectTopLeft(
|
||||||
|
[self.contentCollectionView layoutAttributesForItemAtIndexPath:targetIndexPath].frame );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {
|
||||||
|
|
||||||
|
if (scrollView == self.contentCollectionView && !decelerate)
|
||||||
|
[self saveContentType];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
|
||||||
|
|
||||||
|
if (scrollView == self.contentCollectionView)
|
||||||
|
[self saveContentType];
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - Private
|
||||||
|
|
||||||
|
- (MPElementType)typeForContentIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
|
MPElementType type = MPElementTypeGeneratedPIN;
|
||||||
|
|
||||||
|
for (NSUInteger i = 0; i < indexPath.item; ++i)
|
||||||
|
type = [self.algorithm nextType:type];
|
||||||
|
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (NSIndexPath *)contentIndexPathForType:(MPElementType)type {
|
||||||
|
|
||||||
|
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:0 inSection:0];
|
||||||
|
while ([self typeForContentIndexPath:indexPath] != type) {
|
||||||
|
indexPath = [NSIndexPath indexPathForItem:indexPath.item + 1 inSection:indexPath.section];
|
||||||
|
NSAssert1(indexPath.item < [self.contentCollectionView numberOfItemsInSection:0],
|
||||||
|
@"No item found for type: %@", [self.algorithm nameOfType:type]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return indexPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)saveContentType {
|
||||||
|
|
||||||
|
if (self.transientSite)
|
||||||
|
return;
|
||||||
|
|
||||||
|
CGPoint centerPoint = CGPointFromCGRectCenter( self.contentCollectionView.bounds );
|
||||||
|
NSIndexPath *centerIndexPath = [self.contentCollectionView indexPathForItemAtPoint:centerPoint];
|
||||||
|
|
||||||
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
|
MPPasswordLargeCell *cell = (MPPasswordLargeCell *)[self.contentCollectionView cellForItemAtIndexPath:centerIndexPath];
|
||||||
|
if (!cell) {
|
||||||
|
err(@"Couldn't find cell to change type: centerIndexPath=%@", centerIndexPath);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
MPElementEntity *element = [self elementInContext:context];
|
||||||
|
if (element.type == cell.type)
|
||||||
|
// Nothing changed.
|
||||||
|
return;
|
||||||
|
|
||||||
|
self.element = [cell saveContentTypeWithElement:element saveInContext:context];
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
#pragma mark - Properties
|
||||||
|
|
||||||
|
- (void)setSelected:(BOOL)selected {
|
||||||
|
|
||||||
|
[super setSelected:selected];
|
||||||
|
|
||||||
|
if (!selected)
|
||||||
|
for (NSIndexPath *indexPath in [self.contentCollectionView indexPathsForSelectedItems])
|
||||||
|
[self.contentCollectionView deselectItemAtIndexPath:indexPath animated:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setAlgorithm:(id<MPAlgorithm>)algorithm {
|
||||||
|
|
||||||
|
if ([_algorithm isEqual:algorithm])
|
||||||
|
return;
|
||||||
|
|
||||||
|
_algorithm = algorithm;
|
||||||
|
|
||||||
|
[self.contentCollectionView reloadData];
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
@ -17,8 +17,9 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#import "LLGitTip.h"
|
#import "LLGitTip.h"
|
||||||
|
@class MPElementEntity;
|
||||||
|
|
||||||
@interface MPPasswordsViewController : UIViewController<UISearchBarDelegate, UICollectionViewDataSource, UICollectionViewDelegate, UITextFieldDelegate>
|
@interface MPPasswordsViewController : UIViewController<UISearchBarDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout>
|
||||||
|
|
||||||
@property(strong, nonatomic) IBOutlet UIView *passwordSelectionContainer;
|
@property(strong, nonatomic) IBOutlet UIView *passwordSelectionContainer;
|
||||||
@property(strong, nonatomic) IBOutlet UICollectionView *passwordCollectionView;
|
@property(strong, nonatomic) IBOutlet UICollectionView *passwordCollectionView;
|
||||||
|
@ -19,14 +19,17 @@
|
|||||||
#import "MPPasswordsViewController.h"
|
#import "MPPasswordsViewController.h"
|
||||||
#import "MPiOSAppDelegate.h"
|
#import "MPiOSAppDelegate.h"
|
||||||
#import "MPAppDelegate_Store.h"
|
#import "MPAppDelegate_Store.h"
|
||||||
#import "MPPasswordCell.h"
|
#import "MPPasswordLargeCell.h"
|
||||||
|
#import "UIScrollView+PearlAdjustInsets.h"
|
||||||
|
#import "MPPasswordTypesCell.h"
|
||||||
|
#import "MPPasswordSmallCell.h"
|
||||||
|
#import "UIColor+Expanded.h"
|
||||||
|
|
||||||
@interface MPPasswordsViewController()<NSFetchedResultsControllerDelegate>
|
@interface MPPasswordsViewController()<NSFetchedResultsControllerDelegate>
|
||||||
|
|
||||||
@property(strong, nonatomic) IBOutlet UINavigationBar *navigationBar;
|
@property(nonatomic, strong) IBOutlet UINavigationBar *navigationBar;
|
||||||
|
|
||||||
@property(nonatomic, readonly) NSString *query;
|
@property(nonatomic, readonly) NSString *query;
|
||||||
@property(nonatomic, strong) NSFetchedResultsController *fetchedResultsController;
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation MPPasswordsViewController {
|
@implementation MPPasswordsViewController {
|
||||||
@ -34,13 +37,23 @@
|
|||||||
__weak id _mocObserver;
|
__weak id _mocObserver;
|
||||||
NSArray *_notificationObservers;
|
NSArray *_notificationObservers;
|
||||||
__weak UITapGestureRecognizer *_passwordsDismissRecognizer;
|
__weak UITapGestureRecognizer *_passwordsDismissRecognizer;
|
||||||
|
NSFetchedResultsController *_fetchedResultsController;
|
||||||
|
NSManagedObjectID *_activeElementOID;
|
||||||
|
BOOL _exactMatch;
|
||||||
|
NSMutableDictionary *_fetchedUpdates;
|
||||||
|
UIColor *_backgroundColor;
|
||||||
|
UIColor *_darkenedBackgroundColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)viewDidLoad {
|
- (void)viewDidLoad {
|
||||||
|
|
||||||
[super viewDidLoad];
|
[super viewDidLoad];
|
||||||
|
|
||||||
|
_fetchedUpdates = [NSMutableDictionary dictionaryWithCapacity:4];
|
||||||
|
_darkenedBackgroundColor = [(_backgroundColor = [UIColor colorWithRGBHex:0x1F2124]) colorByMultiplyingBy:0.7f];
|
||||||
|
|
||||||
self.view.backgroundColor = [UIColor clearColor];
|
self.view.backgroundColor = [UIColor clearColor];
|
||||||
|
[self.passwordCollectionView automaticallyAdjustInsetsForKeyboard];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)viewWillAppear:(BOOL)animated {
|
- (void)viewWillAppear:(BOOL)animated {
|
||||||
@ -59,74 +72,260 @@
|
|||||||
[self stopObservingStore];
|
[self stopObservingStore];
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - UITextFieldDelegate
|
#pragma mark - UICollectionViewDelegateFlowLayout
|
||||||
|
|
||||||
- (void)textFieldDidEndEditing:(UITextField *)textField {
|
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout
|
||||||
}
|
sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
|
if (collectionView == self.passwordCollectionView) {
|
||||||
|
if (indexPath.item < 3 ||
|
||||||
|
indexPath.item >= ((id<NSFetchedResultsSectionInfo>)self.fetchedResultsController.sections[indexPath.section]).numberOfObjects)
|
||||||
|
return CGSizeMake( 300, 100 );
|
||||||
|
|
||||||
return NO;
|
UICollectionViewFlowLayout *layout = (UICollectionViewFlowLayout *)collectionViewLayout;
|
||||||
}
|
return CGSizeMake( (300 - layout.minimumInteritemSpacing) / 2, 44 );
|
||||||
|
}
|
||||||
|
|
||||||
// This isn't really in UITextFieldDelegate. We fake it from UITextFieldTextDidChangeNotification.
|
Throw(@"Unexpected collection view: %@", collectionView);
|
||||||
- (void)textFieldDidChange:(UITextField *)textField {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - UICollectionViewDataSource
|
#pragma mark - UICollectionViewDataSource
|
||||||
|
|
||||||
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
|
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
|
||||||
|
|
||||||
return [self.fetchedResultsController.sections count] + 1;
|
if (collectionView == self.passwordCollectionView)
|
||||||
|
dbg_return_tr([self.fetchedResultsController.sections count], @);
|
||||||
|
|
||||||
|
Throw(@"Unexpected collection view: %@", collectionView);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
|
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
|
||||||
|
|
||||||
if (collectionView == self.passwordCollectionView) {
|
if (collectionView == self.passwordCollectionView)
|
||||||
if (section < [self.fetchedResultsController.sections count])
|
dbg_return_tr(!self.query.length? 0: ((id<NSFetchedResultsSectionInfo>)self.fetchedResultsController.sections[section]).numberOfObjects +
|
||||||
return ((id<NSFetchedResultsSectionInfo>)self.fetchedResultsController.sections[section]).numberOfObjects;
|
(_exactMatch? 0: 1), @, @(section));
|
||||||
|
|
||||||
// New Site.
|
Throw(@"Unexpected collection view: %@", collectionView);
|
||||||
return [self.query length]? 1: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
Throw(@"unexpected collection view: %@", collectionView);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
|
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
if (collectionView == self.passwordCollectionView) {
|
if (collectionView == self.passwordCollectionView) {
|
||||||
MPPasswordCell *cell;
|
[UIView setAnimationsEnabled:NO];
|
||||||
if (indexPath.section < [self.fetchedResultsController.sections count]) {
|
MPPasswordElementCell *cell;
|
||||||
|
if (indexPath.item < ((id<NSFetchedResultsSectionInfo>)self.fetchedResultsController.sections[indexPath.section]).numberOfObjects) {
|
||||||
MPElementEntity *element = [self.fetchedResultsController objectAtIndexPath:indexPath];
|
MPElementEntity *element = [self.fetchedResultsController objectAtIndexPath:indexPath];
|
||||||
if (indexPath.item < 2)
|
if (indexPath.item < 3)
|
||||||
cell = [collectionView dequeueReusableCellWithReuseIdentifier:[MPPasswordCell reuseIdentifierForElement:element] forIndexPath:indexPath];
|
cell = [MPPasswordTypesCell dequeueCellForElement:element fromCollectionView:collectionView atIndexPath:indexPath];
|
||||||
|
else
|
||||||
|
cell = [MPPasswordSmallCell dequeueCellForElement:element fromCollectionView:collectionView atIndexPath:indexPath];
|
||||||
|
}
|
||||||
else
|
else
|
||||||
cell = [collectionView dequeueReusableCellWithReuseIdentifier:[MPPasswordCell reuseIdentifierForElement:element] forIndexPath:indexPath];
|
|
||||||
|
|
||||||
[cell setElement:element];
|
|
||||||
} else {
|
|
||||||
// New Site.
|
// New Site.
|
||||||
cell = [collectionView dequeueReusableCellWithReuseIdentifier:[MPPasswordCell reuseIdentifier] forIndexPath:indexPath];
|
cell = [MPPasswordTypesCell dequeueCellForTransientSite:self.query fromCollectionView:collectionView atIndexPath:indexPath];
|
||||||
cell.transientSite = self.query;
|
|
||||||
}
|
[UIView setAnimationsEnabled:YES];
|
||||||
return cell;
|
dbg_return(cell, indexPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
Throw(@"unexpected collection view: %@", collectionView);
|
Throw(@"Unexpected collection view: %@", collectionView);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
|
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
|
MPPasswordElementCell *cell = (MPPasswordElementCell *)[collectionView cellForItemAtIndexPath:indexPath];
|
||||||
|
NSString *newSiteName = cell.transientSite;
|
||||||
|
if (newSiteName) {
|
||||||
|
[PearlAlert showAlertWithTitle:@"Create Site"
|
||||||
|
message:strf( @"Do you want to create a new site named:\n%@", newSiteName )
|
||||||
|
viewStyle:UIAlertViewStyleDefault
|
||||||
|
initAlert:nil tappedButtonBlock:^(UIAlertView *alert, NSInteger buttonIndex) {
|
||||||
|
if (buttonIndex == [alert cancelButtonIndex]) {
|
||||||
|
// Cancel
|
||||||
|
[collectionView selectItemAtIndexPath:indexPath animated:NO
|
||||||
|
scrollPosition:UICollectionViewScrollPositionCenteredHorizontally];
|
||||||
|
[collectionView deselectItemAtIndexPath:indexPath animated:YES];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create
|
||||||
|
[[MPiOSAppDelegate get] addElementNamed:newSiteName completion:^(MPElementEntity *element) {
|
||||||
|
self.activeElement = element;
|
||||||
|
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
|
||||||
|
[PearlOverlay showTemporaryOverlayWithTitle:strf( @"Added %@", newSiteName ) dismissAfter:2];
|
||||||
|
[collectionView selectItemAtIndexPath:indexPath animated:NO
|
||||||
|
scrollPosition:UICollectionViewScrollPositionCenteredHorizontally];
|
||||||
|
[collectionView deselectItemAtIndexPath:indexPath animated:YES];
|
||||||
|
}];
|
||||||
|
}];
|
||||||
|
} cancelTitle:[PearlStrings get].commonButtonCancel otherTitles:[PearlStrings get].commonButtonYes, nil];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
MPElementEntity *element = [cell mainElement];
|
||||||
|
if (!element) {
|
||||||
|
[collectionView selectItemAtIndexPath:indexPath animated:NO
|
||||||
|
scrollPosition:UICollectionViewScrollPositionCenteredHorizontally];
|
||||||
|
[collectionView deselectItemAtIndexPath:indexPath animated:YES];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
inf(@"Copying password for: %@", element.name);
|
||||||
|
MPCheckpoint( MPCheckpointCopyToPasteboard, @{
|
||||||
|
@"type" : NilToNSNull(element.typeName),
|
||||||
|
@"version" : @(element.version),
|
||||||
|
@"emergency" : @NO
|
||||||
|
} );
|
||||||
|
|
||||||
|
[element use];
|
||||||
|
[element resolveContentUsingKey:[MPAppDelegate_Shared get].key result:^(NSString *result) {
|
||||||
|
if (![result length]) {
|
||||||
|
[collectionView selectItemAtIndexPath:indexPath animated:NO
|
||||||
|
scrollPosition:UICollectionViewScrollPositionCenteredHorizontally];
|
||||||
|
[collectionView deselectItemAtIndexPath:indexPath animated:YES];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
[UIPasteboard generalPasteboard].string = result;
|
||||||
|
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
|
||||||
|
[PearlOverlay showTemporaryOverlayWithTitle:@"Password Copied" dismissAfter:2];
|
||||||
|
PearlMainQueueAfter( 0.1f, ^{
|
||||||
|
[collectionView selectItemAtIndexPath:indexPath animated:NO
|
||||||
|
scrollPosition:UICollectionViewScrollPositionCenteredHorizontally];
|
||||||
|
[collectionView deselectItemAtIndexPath:indexPath animated:YES];
|
||||||
|
} );
|
||||||
|
}];
|
||||||
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath {
|
#pragma mark - NSFetchedResultsControllerDelegate
|
||||||
|
|
||||||
|
- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller {
|
||||||
|
|
||||||
|
if (controller == _fetchedResultsController) {
|
||||||
|
dbg(@"controllerWillChangeContent");
|
||||||
|
NSAssert(![_fetchedUpdates count], @"Didn't finish a previous change update?");
|
||||||
|
if ([_fetchedUpdates count]) {
|
||||||
|
[_fetchedUpdates removeAllObjects];
|
||||||
|
[self.passwordCollectionView reloadData];
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - UILongPressGestureRecognizer
|
- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject atIndexPath:(NSIndexPath *)indexPath
|
||||||
|
forChangeType:(NSFetchedResultsChangeType)type newIndexPath:(NSIndexPath *)newIndexPath {
|
||||||
|
|
||||||
- (void)didLongPress:(UILongPressGestureRecognizer *)recognizer {
|
if (controller == _fetchedResultsController) {
|
||||||
|
NSMutableArray *updatesForType = _fetchedUpdates[@(type)];
|
||||||
|
if (!updatesForType)
|
||||||
|
_fetchedUpdates[@(type)] = updatesForType = [NSMutableArray new];
|
||||||
|
|
||||||
|
[updatesForType addObject:@{ @"object" : NilToNSNull(anObject),
|
||||||
|
@"indexPath" : NilToNSNull(indexPath),
|
||||||
|
@"newIndexPath" : NilToNSNull(newIndexPath) }];
|
||||||
|
switch (type) {
|
||||||
|
case NSFetchedResultsChangeInsert:
|
||||||
|
dbg(@"didChangeObject: insert: %@", [updatesForType lastObject]);
|
||||||
|
break;
|
||||||
|
case NSFetchedResultsChangeDelete:
|
||||||
|
dbg(@"didChangeObject: delete: %@", [updatesForType lastObject]);
|
||||||
|
break;
|
||||||
|
case NSFetchedResultsChangeMove:
|
||||||
|
dbg(@"didChangeObject: move: %@", [updatesForType lastObject]);
|
||||||
|
break;
|
||||||
|
case NSFetchedResultsChangeUpdate:
|
||||||
|
dbg(@"didChangeObject: update: %@", [updatesForType lastObject]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id<NSFetchedResultsSectionInfo>)sectionInfo
|
||||||
|
atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type {
|
||||||
|
|
||||||
|
if (controller == _fetchedResultsController) {
|
||||||
|
NSMutableArray *updatesForType = _fetchedUpdates[@(type << 3)];
|
||||||
|
if (!updatesForType)
|
||||||
|
_fetchedUpdates[@(type << 3)] = updatesForType = [NSMutableArray new];
|
||||||
|
|
||||||
|
[updatesForType addObject:@{ @"sectionInfo" : NilToNSNull(sectionInfo),
|
||||||
|
@"index" : @(sectionIndex) }];
|
||||||
|
switch (type) {
|
||||||
|
case NSFetchedResultsChangeInsert:
|
||||||
|
dbg(@"didChangeSection: insert: %@", [updatesForType lastObject]);
|
||||||
|
break;
|
||||||
|
case NSFetchedResultsChangeDelete:
|
||||||
|
dbg(@"didChangeSection: delete: %@", [updatesForType lastObject]);
|
||||||
|
break;
|
||||||
|
case NSFetchedResultsChangeMove:
|
||||||
|
dbg(@"didChangeSection: move: %@", [updatesForType lastObject]);
|
||||||
|
break;
|
||||||
|
case NSFetchedResultsChangeUpdate:
|
||||||
|
dbg(@"didChangeSection: update: %@", [updatesForType lastObject]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller {
|
||||||
|
|
||||||
|
if (controller == _fetchedResultsController && [_fetchedUpdates count]) {
|
||||||
|
[self.passwordCollectionView performBatchUpdates:^{
|
||||||
|
[_fetchedUpdates enumerateKeysAndObjectsUsingBlock:^(NSNumber *typeNumber, NSArray *updates, BOOL *stop) {
|
||||||
|
BOOL updateIsSection = NO;
|
||||||
|
NSFetchedResultsChangeType type = [typeNumber unsignedIntegerValue];
|
||||||
|
if (type >= 1 << 3) {
|
||||||
|
updateIsSection = YES;
|
||||||
|
type = type >> 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (type) {
|
||||||
|
case NSFetchedResultsChangeInsert:
|
||||||
|
if (updateIsSection) {
|
||||||
|
for (NSDictionary *update in updates) {
|
||||||
|
dbg(@"insertSections:%@", update[@"index"]);
|
||||||
|
[self.passwordCollectionView insertSections:
|
||||||
|
[NSIndexSet indexSetWithIndex:[update[@"index"] unsignedIntegerValue]]];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
dbg(@"insertItemsAtIndexPaths:%@", [updates valueForKeyPath:@"@unionOfObjects.newIndexPath"]);
|
||||||
|
[self.passwordCollectionView insertItemsAtIndexPaths:[updates valueForKeyPath:@"@unionOfObjects.newIndexPath"]];
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case NSFetchedResultsChangeDelete:
|
||||||
|
if (updateIsSection) {
|
||||||
|
for (NSDictionary *update in updates) {
|
||||||
|
dbg(@"deleteSections:%@", update[@"index"]);
|
||||||
|
[self.passwordCollectionView deleteSections:
|
||||||
|
[NSIndexSet indexSetWithIndex:[update[@"index"] unsignedIntegerValue]]];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
dbg(@"deleteItemsAtIndexPaths:%@", [updates valueForKeyPath:@"@unionOfObjects.indexPath"]);
|
||||||
|
[self.passwordCollectionView deleteItemsAtIndexPaths:[updates valueForKeyPath:@"@unionOfObjects.indexPath"]];
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case NSFetchedResultsChangeMove:
|
||||||
|
NSAssert(!updateIsSection, @"Move not supported for sections");
|
||||||
|
for (NSDictionary *update in updates) {
|
||||||
|
dbg(@"moveItemAtIndexPath:%@ toIndexPath:%@", update[@"indexPath"], update[@"newIndexPath"]);
|
||||||
|
[self.passwordCollectionView moveItemAtIndexPath:update[@"indexPath"] toIndexPath:update[@"newIndexPath"]];
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case NSFetchedResultsChangeUpdate:
|
||||||
|
NSAssert(!updateIsSection, @"Update not supported for sections");
|
||||||
|
dbg(@"reloadItemsAtIndexPaths:%@", [updates valueForKeyPath:@"@unionOfObjects.indexPath"]);
|
||||||
|
[self.passwordCollectionView reloadItemsAtIndexPaths:[updates valueForKeyPath:@"@unionOfObjects.indexPath"]];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}];
|
||||||
|
} completion:nil];
|
||||||
|
[_fetchedUpdates removeAllObjects];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#pragma mark - UIScrollViewDelegate
|
#pragma mark - UIScrollViewDelegate
|
||||||
|
|
||||||
#pragma mark - UISearchBarDelegate
|
#pragma mark - UISearchBarDelegate
|
||||||
@ -138,9 +337,9 @@
|
|||||||
self.passwordsSearchBar.showsCancelButton = YES;
|
self.passwordsSearchBar.showsCancelButton = YES;
|
||||||
_passwordsDismissRecognizer = [self.view dismissKeyboardForField:self.passwordsSearchBar onTouchForced:NO];
|
_passwordsDismissRecognizer = [self.view dismissKeyboardForField:self.passwordsSearchBar onTouchForced:NO];
|
||||||
|
|
||||||
// [UIView animateWithDuration:0.3f animations:^{
|
[UIView animateWithDuration:0.3f animations:^{
|
||||||
// self.passwordCollectionView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.3f];
|
searchBar.superview.backgroundColor = _darkenedBackgroundColor;
|
||||||
// }];
|
}];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -152,7 +351,7 @@
|
|||||||
[self.view removeGestureRecognizer:_passwordsDismissRecognizer];
|
[self.view removeGestureRecognizer:_passwordsDismissRecognizer];
|
||||||
|
|
||||||
[UIView animateWithDuration:0.3f animations:^{
|
[UIView animateWithDuration:0.3f animations:^{
|
||||||
self.passwordCollectionView.backgroundColor = [UIColor clearColor];
|
searchBar.superview.backgroundColor = _backgroundColor;
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -195,12 +394,22 @@
|
|||||||
|
|
||||||
self.passwordSelectionContainer.alpha = 0;
|
self.passwordSelectionContainer.alpha = 0;
|
||||||
}],
|
}],
|
||||||
|
[[NSNotificationCenter defaultCenter]
|
||||||
|
addObserverForName:MPSignedOutNotification object:nil
|
||||||
|
queue:nil usingBlock:^(NSNotification *note) {
|
||||||
|
Strongify(self);
|
||||||
|
|
||||||
|
self.activeElement = nil;
|
||||||
|
_fetchedResultsController = nil;
|
||||||
|
self.passwordsSearchBar.text = nil;
|
||||||
|
[self updatePasswords];
|
||||||
|
}],
|
||||||
[[NSNotificationCenter defaultCenter]
|
[[NSNotificationCenter defaultCenter]
|
||||||
addObserverForName:UIApplicationDidBecomeActiveNotification object:nil
|
addObserverForName:UIApplicationDidBecomeActiveNotification object:nil
|
||||||
queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
|
queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
|
||||||
Strongify(self);
|
Strongify(self);
|
||||||
|
|
||||||
// [self updateMode]; TODO: reload passwords list
|
[self updatePasswords];
|
||||||
[UIView animateWithDuration:1 animations:^{
|
[UIView animateWithDuration:1 animations:^{
|
||||||
self.passwordSelectionContainer.alpha = 1;
|
self.passwordSelectionContainer.alpha = 1;
|
||||||
}];
|
}];
|
||||||
@ -224,15 +433,15 @@
|
|||||||
_mocObserver = [[NSNotificationCenter defaultCenter]
|
_mocObserver = [[NSNotificationCenter defaultCenter]
|
||||||
addObserverForName:NSManagedObjectContextObjectsDidChangeNotification object:mainContext
|
addObserverForName:NSManagedObjectContextObjectsDidChangeNotification object:mainContext
|
||||||
queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
|
queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
|
||||||
// Strongify(self);
|
Strongify(self);
|
||||||
// [self updateMode]; TODO: reload passwords list
|
[self updatePasswords];
|
||||||
}];
|
}];
|
||||||
if (!_storeObserver)
|
if (!_storeObserver)
|
||||||
_storeObserver = [[NSNotificationCenter defaultCenter]
|
_storeObserver = [[NSNotificationCenter defaultCenter]
|
||||||
addObserverForName:USMStoreDidChangeNotification object:nil
|
addObserverForName:USMStoreDidChangeNotification object:nil
|
||||||
queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
|
queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
|
||||||
Strongify(self);
|
Strongify(self);
|
||||||
self.fetchedResultsController = nil;
|
_fetchedResultsController = nil;
|
||||||
[self updatePasswords];
|
[self updatePasswords];
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
@ -247,20 +456,48 @@
|
|||||||
|
|
||||||
- (void)updatePasswords {
|
- (void)updatePasswords {
|
||||||
|
|
||||||
[self.fetchedResultsController.managedObjectContext performBlock:^{
|
NSString *query = self.query;
|
||||||
NSManagedObjectID *activeUserOID = [MPiOSAppDelegate get].activeUserOID;
|
NSManagedObjectID *activeUserOID = [MPiOSAppDelegate get].activeUserOID;
|
||||||
if (!activeUserOID)
|
if (!activeUserOID || ![query length]) {
|
||||||
|
self.passwordsSearchBar.text = nil;
|
||||||
|
PearlMainQueue( ^{ [self.passwordCollectionView reloadData]; } );
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
[self.fetchedResultsController.managedObjectContext performBlock:^{
|
||||||
NSError *error = nil;
|
NSError *error = nil;
|
||||||
self.fetchedResultsController.fetchRequest.predicate = [NSPredicate predicateWithFormat:
|
self.fetchedResultsController.fetchRequest.predicate = [NSPredicate predicateWithFormat:
|
||||||
@"user == %@ AND name BEGINSWITH[cd] %@", activeUserOID, self.query];
|
@"user == %@ AND name BEGINSWITH[cd] %@", activeUserOID, query];
|
||||||
if (![self.fetchedResultsController performFetch:&error])
|
if (![self.fetchedResultsController performFetch:&error])
|
||||||
err(@"Couldn't fetch elements: %@", error);
|
err(@"Couldn't fetch elements: %@", error);
|
||||||
|
|
||||||
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
|
_exactMatch = NO;
|
||||||
[self.passwordCollectionView reloadData];
|
for (MPElementEntity *entity in self.fetchedResultsController.fetchedObjects)
|
||||||
}];
|
if ([entity.name isEqualToString:query]) {
|
||||||
|
_exactMatch = YES;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
PearlMainQueue( ^{
|
||||||
|
[self.passwordCollectionView performBatchUpdates:^{
|
||||||
|
NSInteger fromSections = self.passwordCollectionView.numberOfSections;
|
||||||
|
NSInteger toSections = [self numberOfSectionsInCollectionView:self.passwordCollectionView];
|
||||||
|
for (int section = 0; section < MAX(toSections, fromSections); section++) {
|
||||||
|
if (section >= fromSections) {
|
||||||
|
dbg(@"insertSections:%d", section);
|
||||||
|
[self.passwordCollectionView insertSections:[NSIndexSet indexSetWithIndex:section]];
|
||||||
|
}
|
||||||
|
else if (section >= toSections) {
|
||||||
|
dbg(@"deleteSections:%d", section);
|
||||||
|
[self.passwordCollectionView deleteSections:[NSIndexSet indexSetWithIndex:section]];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
dbg(@"reloadSections:%d", section);
|
||||||
|
[self.passwordCollectionView reloadSections:[NSIndexSet indexSetWithIndex:section]];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} completion:nil];
|
||||||
|
} );
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -273,21 +510,30 @@
|
|||||||
|
|
||||||
- (NSFetchedResultsController *)fetchedResultsController {
|
- (NSFetchedResultsController *)fetchedResultsController {
|
||||||
|
|
||||||
if (!_fetchedResultsController)
|
if (!_fetchedResultsController) {
|
||||||
[MPiOSAppDelegate managedObjectContextPerformBlockAndWait:^(NSManagedObjectContext *context) {
|
[MPiOSAppDelegate managedObjectContextForMainThreadPerformBlockAndWait:^(NSManagedObjectContext *mainContext) {
|
||||||
NSFetchRequest *fetchRequest = [NSFetchRequest fetchRequestWithEntityName:NSStringFromClass( [MPElementEntity class] )];
|
NSFetchRequest *fetchRequest = [NSFetchRequest fetchRequestWithEntityName:NSStringFromClass( [MPElementEntity class] )];
|
||||||
fetchRequest.sortDescriptors = @[
|
fetchRequest.sortDescriptors = @[
|
||||||
[[NSSortDescriptor alloc] initWithKey:NSStringFromSelector( @selector(lastUsed) ) ascending:NO]
|
[[NSSortDescriptor alloc] initWithKey:NSStringFromSelector( @selector(lastUsed) ) ascending:NO]
|
||||||
];
|
];
|
||||||
fetchRequest.fetchBatchSize = 10;
|
fetchRequest.fetchBatchSize = 10;
|
||||||
_fetchedResultsController = [[NSFetchedResultsController alloc]
|
_fetchedResultsController = [[NSFetchedResultsController alloc]
|
||||||
initWithFetchRequest:fetchRequest managedObjectContext:context sectionNameKeyPath:nil cacheName:nil];
|
initWithFetchRequest:fetchRequest managedObjectContext:mainContext sectionNameKeyPath:nil cacheName:nil];
|
||||||
_fetchedResultsController.delegate = self;
|
_fetchedResultsController.delegate = self;
|
||||||
}];
|
}];
|
||||||
|
[self observeStore];
|
||||||
|
}
|
||||||
|
|
||||||
return _fetchedResultsController;
|
return _fetchedResultsController;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)setActiveElement:(MPElementEntity *)activeElement {
|
||||||
|
|
||||||
|
_activeElementOID = activeElement.objectID;
|
||||||
|
|
||||||
|
[self updatePasswords];
|
||||||
|
}
|
||||||
|
|
||||||
- (void)setActive:(BOOL)active {
|
- (void)setActive:(BOOL)active {
|
||||||
|
|
||||||
[self setActive:active animated:YES];
|
[self setActive:active animated:YES];
|
||||||
|
@ -102,11 +102,7 @@
|
|||||||
UILabel *alertNameLabel = [self.nameLabel cloneAddedTo:container];
|
UILabel *alertNameLabel = [self.nameLabel cloneAddedTo:container];
|
||||||
alertNameLabel.center = alertAvatar.center;
|
alertNameLabel.center = alertAvatar.center;
|
||||||
alertNameLabel.text = user.name;
|
alertNameLabel.text = user.name;
|
||||||
alertNameLabel.bounds = CGRectSetHeight( alertNameLabel.bounds,
|
[alertNameLabel sizeToFit];
|
||||||
[alertNameLabel.text sizeWithFont:self.nameLabel.font
|
|
||||||
constrainedToSize:CGSizeMake( alertNameLabel.bounds.size.width - 10,
|
|
||||||
100 )
|
|
||||||
lineBreakMode:self.nameLabel.lineBreakMode].height );
|
|
||||||
alertNameLabel.layer.cornerRadius = 5;
|
alertNameLabel.layer.cornerRadius = 5;
|
||||||
alertNameLabel.backgroundColor = [UIColor blackColor];
|
alertNameLabel.backgroundColor = [UIColor blackColor];
|
||||||
}
|
}
|
||||||
@ -614,10 +610,7 @@
|
|||||||
|
|
||||||
// Lay out user name label.
|
// Lay out user name label.
|
||||||
self.nameLabel.text = targetedAvatar? (targetedUser? targetedUser.name: @"New User"): nil;
|
self.nameLabel.text = targetedAvatar? (targetedUser? targetedUser.name: @"New User"): nil;
|
||||||
self.nameLabel.bounds = CGRectSetHeight( self.nameLabel.bounds,
|
[self.nameLabel sizeToFit];
|
||||||
[self.nameLabel.text sizeWithFont:self.nameLabel.font
|
|
||||||
constrainedToSize:CGSizeMake( self.nameLabel.bounds.size.width - 10, 100 )
|
|
||||||
lineBreakMode:self.nameLabel.lineBreakMode].height );
|
|
||||||
self.oldNameLabel.bounds = self.nameLabel.bounds;
|
self.oldNameLabel.bounds = self.nameLabel.bounds;
|
||||||
if (completion)
|
if (completion)
|
||||||
completion( YES );
|
completion( YES );
|
||||||
@ -725,7 +718,7 @@
|
|||||||
|
|
||||||
- (void)setSpinnerActive:(BOOL)active {
|
- (void)setSpinnerActive:(BOOL)active {
|
||||||
|
|
||||||
PearlMainThread(^{
|
PearlMainQueue( ^{
|
||||||
CABasicAnimation *rotate = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
|
CABasicAnimation *rotate = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
|
||||||
rotate.toValue = [NSNumber numberWithDouble:2 * M_PI];
|
rotate.toValue = [NSNumber numberWithDouble:2 * M_PI];
|
||||||
rotate.duration = 5.0;
|
rotate.duration = 5.0;
|
||||||
@ -751,7 +744,7 @@
|
|||||||
else
|
else
|
||||||
[self avatarForUser:[self selectedUserForThread]].backgroundColor = self.avatarTemplate.backgroundColor;
|
[self avatarForUser:[self selectedUserForThread]].backgroundColor = self.avatarTemplate.backgroundColor;
|
||||||
}];
|
}];
|
||||||
});
|
} );
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)updateAvatarShadowColor:(UIButton *)avatar isTargeted:(BOOL)targeted {
|
- (void)updateAvatarShadowColor:(UIButton *)avatar isTargeted:(BOOL)targeted {
|
||||||
|
@ -52,15 +52,18 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
__weak id _mocObserver;
|
__weak id _mocObserver;
|
||||||
NSArray *_notificationObservers;
|
NSArray *_notificationObservers;
|
||||||
NSString *_masterPasswordChoice;
|
NSString *_masterPasswordChoice;
|
||||||
|
NSOperationQueue *_afterUpdates;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)viewDidLoad {
|
- (void)viewDidLoad {
|
||||||
|
|
||||||
[super viewDidLoad];
|
[super viewDidLoad];
|
||||||
|
|
||||||
|
_afterUpdates = [NSOperationQueue new];
|
||||||
|
|
||||||
self.marqueeTipTexts = @[
|
self.marqueeTipTexts = @[
|
||||||
strl(@"Press and hold to change password or delete."),
|
strl( @"Press and hold to change password or delete." ),
|
||||||
strl(@"Shake for emergency generator."),
|
strl( @"Shake for emergency generator." ),
|
||||||
];
|
];
|
||||||
|
|
||||||
self.view.backgroundColor = [UIColor clearColor];
|
self.view.backgroundColor = [UIColor clearColor];
|
||||||
@ -81,7 +84,8 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
[self reloadUsers];
|
[self reloadUsers];
|
||||||
|
|
||||||
[self.marqueeTipTimer invalidate];
|
[self.marqueeTipTimer invalidate];
|
||||||
self.marqueeTipTimer = [NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(firedMarqueeTimer:) userInfo:nil repeats:YES];
|
self.marqueeTipTimer = [NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(firedMarqueeTimer:) userInfo:nil
|
||||||
|
repeats:YES];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)viewWillDisappear:(BOOL)animated {
|
- (void)viewWillDisappear:(BOOL)animated {
|
||||||
@ -119,6 +123,7 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case MPActiveUserStateLogin: {
|
case MPActiveUserStateLogin: {
|
||||||
|
[self.entryField endEditing:YES];
|
||||||
[self selectedAvatar].spinnerActive = YES;
|
[self selectedAvatar].spinnerActive = YES;
|
||||||
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
BOOL signedIn = NO, isNew = NO;
|
BOOL signedIn = NO, isNew = NO;
|
||||||
@ -178,6 +183,7 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
return NO;
|
return NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[self.entryField endEditing:YES];
|
||||||
[self selectedAvatar].spinnerActive = YES;
|
[self selectedAvatar].spinnerActive = YES;
|
||||||
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
||||||
BOOL isNew = NO;
|
BOOL isNew = NO;
|
||||||
@ -240,7 +246,7 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - UICollectionViewDataSource
|
#pragma mark - UICollectionViewDelegateFlowLayout
|
||||||
|
|
||||||
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout
|
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout
|
||||||
sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
|
sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
|
||||||
@ -253,6 +259,8 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
Throw(@"unexpected collection view: %@", collectionView);
|
Throw(@"unexpected collection view: %@", collectionView);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#pragma mark - UICollectionViewDataSource
|
||||||
|
|
||||||
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
|
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
|
||||||
|
|
||||||
if (collectionView == self.avatarCollectionView)
|
if (collectionView == self.avatarCollectionView)
|
||||||
@ -272,11 +280,9 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
BOOL isNew = NO;
|
BOOL isNew = NO;
|
||||||
MPUserEntity *user = [self userForIndexPath:indexPath inContext:[MPiOSAppDelegate managedObjectContextForMainThreadIfReady]
|
MPUserEntity *user = [self userForIndexPath:indexPath inContext:[MPiOSAppDelegate managedObjectContextForMainThreadIfReady]
|
||||||
isNew:&isNew];
|
isNew:&isNew];
|
||||||
if (isNew) {
|
if (isNew)
|
||||||
// New User
|
// New User
|
||||||
cell.avatar = MPAvatarAdd;
|
cell.avatar = MPAvatarAdd;
|
||||||
cell.name = strl( @"New User" );
|
|
||||||
}
|
|
||||||
else {
|
else {
|
||||||
// Existing User
|
// Existing User
|
||||||
cell.avatar = user.avatar;
|
cell.avatar = user.avatar;
|
||||||
@ -305,6 +311,7 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
BOOL isNew = NO;
|
BOOL isNew = NO;
|
||||||
MPUserEntity *user = [self userForIndexPath:indexPath inContext:[MPiOSAppDelegate managedObjectContextForMainThreadIfReady]
|
MPUserEntity *user = [self userForIndexPath:indexPath inContext:[MPiOSAppDelegate managedObjectContextForMainThreadIfReady]
|
||||||
isNew:&isNew];
|
isNew:&isNew];
|
||||||
|
|
||||||
if (isNew)
|
if (isNew)
|
||||||
self.activeUserState = MPActiveUserStateUserName;
|
self.activeUserState = MPActiveUserStateUserName;
|
||||||
else if (!user.keyID)
|
else if (!user.keyID)
|
||||||
@ -316,9 +323,8 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
|
|
||||||
- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath {
|
- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath {
|
||||||
|
|
||||||
if (collectionView == self.avatarCollectionView) {
|
if (collectionView == self.avatarCollectionView)
|
||||||
self.activeUserState = MPActiveUserStateNone;
|
self.activeUserState = MPActiveUserStateNone;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - UILongPressGestureRecognizer
|
#pragma mark - UILongPressGestureRecognizer
|
||||||
@ -363,13 +369,12 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
MPUserEntity *user_ = (MPUserEntity *)[context existingObjectWithID:userID error:NULL];
|
MPUserEntity *user_ = (MPUserEntity *)[context existingObjectWithID:userID error:NULL];
|
||||||
if (user_)
|
if (user_)
|
||||||
[[MPiOSAppDelegate get] changeMasterPasswordFor:user_ saveInContext:context didResetBlock:^{
|
[[MPiOSAppDelegate get] changeMasterPasswordFor:user_ saveInContext:context didResetBlock:^{
|
||||||
dbg(@"changing mp for user: %@, keyID: %@", user_.name, user_.keyID);
|
PearlMainQueue( ^{
|
||||||
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
|
|
||||||
NSIndexPath *avatarIndexPath = [self.avatarCollectionView indexPathForCell:avatarCell];
|
NSIndexPath *avatarIndexPath = [self.avatarCollectionView indexPathForCell:avatarCell];
|
||||||
[self.avatarCollectionView selectItemAtIndexPath:avatarIndexPath animated:NO
|
[self.avatarCollectionView selectItemAtIndexPath:avatarIndexPath animated:NO
|
||||||
scrollPosition:UICollectionViewScrollPositionNone];
|
scrollPosition:UICollectionViewScrollPositionNone];
|
||||||
[self collectionView:self.avatarCollectionView didSelectItemAtIndexPath:avatarIndexPath];
|
[self collectionView:self.avatarCollectionView didSelectItemAtIndexPath:avatarIndexPath];
|
||||||
}];
|
} );
|
||||||
}];
|
}];
|
||||||
}];
|
}];
|
||||||
} cancelTitle:[PearlStrings get].commonButtonCancel
|
} cancelTitle:[PearlStrings get].commonButtonCancel
|
||||||
@ -383,9 +388,7 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
targetContentOffset:(inout CGPoint *)targetContentOffset {
|
targetContentOffset:(inout CGPoint *)targetContentOffset {
|
||||||
|
|
||||||
if (scrollView == self.avatarCollectionView) {
|
if (scrollView == self.avatarCollectionView) {
|
||||||
CGPoint offsetToCenter = CGPointMake(
|
CGPoint offsetToCenter = self.avatarCollectionView.center;
|
||||||
self.avatarCollectionView.bounds.size.width / 2,
|
|
||||||
self.avatarCollectionView.bounds.size.height / 2 );
|
|
||||||
NSIndexPath *avatarIndexPath = [self.avatarCollectionView indexPathForItemAtPoint:
|
NSIndexPath *avatarIndexPath = [self.avatarCollectionView indexPathForItemAtPoint:
|
||||||
CGPointPlusCGPoint( *targetContentOffset, offsetToCenter )];
|
CGPointPlusCGPoint( *targetContentOffset, offsetToCenter )];
|
||||||
CGPoint targetCenter = [self.avatarCollectionView layoutAttributesForItemAtIndexPath:avatarIndexPath].center;
|
CGPoint targetCenter = [self.avatarCollectionView layoutAttributesForItemAtIndexPath:avatarIndexPath].center;
|
||||||
@ -502,6 +505,13 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)afterUpdatesMainQueue:(void (^)(void))block {
|
||||||
|
|
||||||
|
[_afterUpdates addOperationWithBlock:^{
|
||||||
|
PearlMainQueue( block );
|
||||||
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
- (void)registerObservers {
|
- (void)registerObservers {
|
||||||
|
|
||||||
if ([_notificationObservers count])
|
if ([_notificationObservers count])
|
||||||
@ -555,6 +565,12 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
addObserverForName:NSManagedObjectContextObjectsDidChangeNotification object:mainContext
|
addObserverForName:NSManagedObjectContextObjectsDidChangeNotification object:mainContext
|
||||||
queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
|
queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
|
||||||
Strongify(self);
|
Strongify(self);
|
||||||
|
NSSet *insertedObjects = note.userInfo[NSInsertedObjectsKey];
|
||||||
|
NSSet *deletedObjects = note.userInfo[NSDeletedObjectsKey];
|
||||||
|
if ([[NSSetUnion(insertedObjects, deletedObjects)
|
||||||
|
filteredSetUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, NSDictionary *bindings) {
|
||||||
|
return [evaluatedObject isKindOfClass:[MPUserEntity class]];
|
||||||
|
}]] count])
|
||||||
[self reloadUsers];
|
[self reloadUsers];
|
||||||
}];
|
}];
|
||||||
if (!_storeObserver)
|
if (!_storeObserver)
|
||||||
@ -576,11 +592,15 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
|
|
||||||
- (void)reloadUsers {
|
- (void)reloadUsers {
|
||||||
|
|
||||||
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
[self afterUpdatesMainQueue:^{
|
||||||
|
[self observeStore];
|
||||||
|
[MPiOSAppDelegate managedObjectContextForMainThreadPerformBlockAndWait:^(NSManagedObjectContext *mainContext) {
|
||||||
NSError *error = nil;
|
NSError *error = nil;
|
||||||
NSFetchRequest *fetchRequest = [NSFetchRequest fetchRequestWithEntityName:NSStringFromClass( [MPUserEntity class] )];
|
NSFetchRequest *fetchRequest = [NSFetchRequest fetchRequestWithEntityName:NSStringFromClass( [MPUserEntity class] )];
|
||||||
fetchRequest.sortDescriptors = @[ [NSSortDescriptor sortDescriptorWithKey:@"lastUsed" ascending:NO] ];
|
fetchRequest.sortDescriptors = @[
|
||||||
NSArray *users = [context executeFetchRequest:fetchRequest error:&error];
|
[NSSortDescriptor sortDescriptorWithKey:NSStringFromSelector( @selector(lastUsed) ) ascending:NO]
|
||||||
|
];
|
||||||
|
NSArray *users = [mainContext executeFetchRequest:fetchRequest error:&error];
|
||||||
if (!users) {
|
if (!users) {
|
||||||
err(@"Failed to load users: %@", error);
|
err(@"Failed to load users: %@", error);
|
||||||
self.userIDs = nil;
|
self.userIDs = nil;
|
||||||
@ -591,6 +611,7 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
[userIDs addObject:user.objectID];
|
[userIDs addObject:user.objectID];
|
||||||
self.userIDs = userIDs;
|
self.userIDs = userIDs;
|
||||||
}];
|
}];
|
||||||
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - Properties
|
#pragma mark - Properties
|
||||||
@ -616,13 +637,23 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
_userIDs = userIDs;
|
_userIDs = userIDs;
|
||||||
dbg(@"userIDs -> %lu", (unsigned long)[userIDs count]);
|
dbg(@"userIDs -> %lu", (unsigned long)[userIDs count]);
|
||||||
|
|
||||||
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
|
PearlMainQueue( ^{
|
||||||
|
BOOL isNew = NO;
|
||||||
|
NSManagedObjectID *selectUserID = [MPiOSAppDelegate get].activeUserOID;
|
||||||
|
if (!selectUserID)
|
||||||
|
selectUserID = [self selectedUserInContext:[MPiOSAppDelegate managedObjectContextForMainThreadIfReady]
|
||||||
|
isNew:&isNew].objectID;
|
||||||
[self.avatarCollectionView reloadData];
|
[self.avatarCollectionView reloadData];
|
||||||
|
|
||||||
|
NSUInteger selectedAvatarItem = isNew? [_userIDs count]: selectUserID? [_userIDs indexOfObject:selectUserID]: NSNotFound;
|
||||||
|
if (selectedAvatarItem != NSNotFound)
|
||||||
|
[self.avatarCollectionView selectItemAtIndexPath:[NSIndexPath indexPathForItem:selectedAvatarItem inSection:0] animated:NO
|
||||||
|
scrollPosition:UICollectionViewScrollPositionCenteredHorizontally];
|
||||||
|
|
||||||
[UIView animateWithDuration:0.3f animations:^{
|
[UIView animateWithDuration:0.3f animations:^{
|
||||||
self.userSelectionContainer.alpha = 1;
|
self.userSelectionContainer.alpha = 1;
|
||||||
}];
|
}];
|
||||||
}];
|
} );
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)setActiveUserState:(MPActiveUserState)activeUserState {
|
- (void)setActiveUserState:(MPActiveUserState)activeUserState {
|
||||||
@ -635,11 +666,14 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
_activeUserState = activeUserState;
|
_activeUserState = activeUserState;
|
||||||
_masterPasswordChoice = nil;
|
_masterPasswordChoice = nil;
|
||||||
|
|
||||||
if (activeUserState != MPActiveUserStateMinimized && [MPiOSAppDelegate get].key) {
|
if (activeUserState != MPActiveUserStateMinimized && (!self.active || [MPiOSAppDelegate get].activeUserOID)) {
|
||||||
[[MPiOSAppDelegate get] signOutAnimated:YES];
|
[[MPiOSAppDelegate get] signOutAnimated:YES];
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[_afterUpdates setSuspended:YES];
|
||||||
|
dbg(@"suspend updates");
|
||||||
|
__block BOOL requestFirstResponder = NO;
|
||||||
[UIView animateWithDuration:animated? 0.3f: 0 animations:^{
|
[UIView animateWithDuration:animated? 0.3f: 0 animations:^{
|
||||||
MPAvatarCell *selectedAvatar = [self selectedAvatar];
|
MPAvatarCell *selectedAvatar = [self selectedAvatar];
|
||||||
|
|
||||||
@ -647,7 +681,7 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
for (NSUInteger item = 0; item < [self.avatarCollectionView numberOfItemsInSection:0]; ++item) {
|
for (NSUInteger item = 0; item < [self.avatarCollectionView numberOfItemsInSection:0]; ++item) {
|
||||||
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:item inSection:0];
|
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:item inSection:0];
|
||||||
MPAvatarCell *avatarCell = (MPAvatarCell *)[self.avatarCollectionView cellForItemAtIndexPath:indexPath];
|
MPAvatarCell *avatarCell = (MPAvatarCell *)[self.avatarCollectionView cellForItemAtIndexPath:indexPath];
|
||||||
[self updateModeForAvatar:avatarCell atIndexPath:indexPath animated:NO];
|
[self updateModeForAvatar:avatarCell atIndexPath:indexPath animated:animated];
|
||||||
|
|
||||||
if (selectedAvatar && avatarCell == selectedAvatar)
|
if (selectedAvatar && avatarCell == selectedAvatar)
|
||||||
[self.avatarCollectionView scrollToItemAtIndexPath:indexPath
|
[self.avatarCollectionView scrollToItemAtIndexPath:indexPath
|
||||||
@ -693,16 +727,6 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Manage the random avatar for the new user if selected.
|
|
||||||
if (selectedAvatar.avatar == MPAvatarAdd)
|
|
||||||
selectedAvatar.avatar = arc4random() % MPAvatarCount;
|
|
||||||
else {
|
|
||||||
NSIndexPath *newUserIndexPath = [NSIndexPath indexPathForItem:[_userIDs count] inSection:0];
|
|
||||||
MPAvatarCell *newUserAvatar = (MPAvatarCell *)[[self avatarCollectionView] cellForItemAtIndexPath:newUserIndexPath];
|
|
||||||
newUserAvatar.avatar = MPAvatarAdd;
|
|
||||||
newUserAvatar.name = strl( @"New User" );
|
|
||||||
}
|
|
||||||
|
|
||||||
// Manage the entry container depending on whether a user is activate or not.
|
// Manage the entry container depending on whether a user is activate or not.
|
||||||
switch (activeUserState) {
|
switch (activeUserState) {
|
||||||
case MPActiveUserStateNone: {
|
case MPActiveUserStateNone: {
|
||||||
@ -722,6 +746,7 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
self.avatarCollectionView.scrollEnabled = NO;
|
self.avatarCollectionView.scrollEnabled = NO;
|
||||||
self.entryContainer.alpha = 1;
|
self.entryContainer.alpha = 1;
|
||||||
self.footerContainer.alpha = 1;
|
self.footerContainer.alpha = 1;
|
||||||
|
requestFirstResponder = YES;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case MPActiveUserStateMinimized: {
|
case MPActiveUserStateMinimized: {
|
||||||
@ -737,12 +762,15 @@ typedef NS_ENUM(NSUInteger, MPActiveUserState) {
|
|||||||
[self.avatarCollectionCenterConstraint apply];
|
[self.avatarCollectionCenterConstraint apply];
|
||||||
|
|
||||||
// Toggle the keyboard.
|
// Toggle the keyboard.
|
||||||
if (!self.entryContainer.alpha)
|
|
||||||
[self.entryField resignFirstResponder];
|
|
||||||
} completion:^(BOOL finished) {
|
} completion:^(BOOL finished) {
|
||||||
if (finished && self.entryContainer.alpha)
|
dbg(@"resume updates");
|
||||||
[self.entryField becomeFirstResponder];
|
[_afterUpdates setSuspended:NO];
|
||||||
}];
|
}];
|
||||||
|
|
||||||
|
if (requestFirstResponder)
|
||||||
|
[self.entryField becomeFirstResponder];
|
||||||
|
else
|
||||||
|
[self.entryField resignFirstResponder];
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - Actions
|
#pragma mark - Actions
|
||||||
|
@ -13,9 +13,10 @@
|
|||||||
|
|
||||||
@interface MPiOSAppDelegate()
|
@interface MPiOSAppDelegate()
|
||||||
|
|
||||||
@property(nonatomic, strong) PearlAlert *handleCloudContentAlert;
|
@property(nonatomic, weak) PearlAlert *handleCloudDisabledAlert;
|
||||||
@property(nonatomic, strong) PearlAlert *fixCloudContentAlert;
|
@property(nonatomic, weak) PearlAlert *handleCloudContentAlert;
|
||||||
@property(nonatomic, strong) PearlOverlay *storeLoading;
|
@property(nonatomic, weak) PearlAlert *fixCloudContentAlert;
|
||||||
|
@property(nonatomic, weak) PearlOverlay *storeLoading;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation MPiOSAppDelegate
|
@implementation MPiOSAppDelegate
|
||||||
@ -120,12 +121,14 @@
|
|||||||
UIImage *navBarImage = [[UIImage imageNamed:@"ui_navbar_container"] resizableImageWithCapInsets:UIEdgeInsetsMake( 0, 5, 0, 5 )];
|
UIImage *navBarImage = [[UIImage imageNamed:@"ui_navbar_container"] resizableImageWithCapInsets:UIEdgeInsetsMake( 0, 5, 0, 5 )];
|
||||||
[[UINavigationBar appearance] setBackgroundImage:navBarImage forBarMetrics:UIBarMetricsDefault];
|
[[UINavigationBar appearance] setBackgroundImage:navBarImage forBarMetrics:UIBarMetricsDefault];
|
||||||
[[UINavigationBar appearance] setBackgroundImage:navBarImage forBarMetrics:UIBarMetricsLandscapePhone];
|
[[UINavigationBar appearance] setBackgroundImage:navBarImage forBarMetrics:UIBarMetricsLandscapePhone];
|
||||||
|
NSShadow *titleShadow = [NSShadow new];
|
||||||
|
titleShadow.shadowColor = [UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.8f];
|
||||||
|
titleShadow.shadowOffset = CGSizeMake( 0, -1 );
|
||||||
[[UINavigationBar appearance] setTitleTextAttributes:
|
[[UINavigationBar appearance] setTitleTextAttributes:
|
||||||
@{
|
@{
|
||||||
UITextAttributeTextColor : [UIColor colorWithRed:1.0f green:1.0f blue:1.0f alpha:1.0f],
|
NSForegroundColorAttributeName : [UIColor colorWithRed:1.0f green:1.0f blue:1.0f alpha:1.0f],
|
||||||
UITextAttributeTextShadowColor : [UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.8f],
|
NSShadowAttributeName : titleShadow,
|
||||||
UITextAttributeTextShadowOffset : [NSValue valueWithUIOffset:UIOffsetMake( 0, -1 )],
|
NSFontAttributeName : [UIFont fontWithName:@"Exo2.0-Bold" size:20.0f]
|
||||||
UITextAttributeFont : [UIFont fontWithName:@"Exo-Bold" size:20.0f]
|
|
||||||
}];
|
}];
|
||||||
|
|
||||||
UIImage *navBarButton = [[UIImage imageNamed:@"ui_navbar_button"] resizableImageWithCapInsets:UIEdgeInsetsMake( 0, 5, 0, 5 )];
|
UIImage *navBarButton = [[UIImage imageNamed:@"ui_navbar_button"] resizableImageWithCapInsets:UIEdgeInsetsMake( 0, 5, 0, 5 )];
|
||||||
@ -136,13 +139,15 @@
|
|||||||
setBackButtonBackgroundImage:navBarBack forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
|
setBackButtonBackgroundImage:navBarBack forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
|
||||||
[[UIBarButtonItem appearance]
|
[[UIBarButtonItem appearance]
|
||||||
setBackButtonBackgroundImage:nil forState:UIControlStateNormal barMetrics:UIBarMetricsLandscapePhone];
|
setBackButtonBackgroundImage:nil forState:UIControlStateNormal barMetrics:UIBarMetricsLandscapePhone];
|
||||||
|
NSShadow *barButtonShadow = [NSShadow new];
|
||||||
|
barButtonShadow.shadowColor = [UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.5f];
|
||||||
|
barButtonShadow.shadowOffset = CGSizeMake( 0, 1 );
|
||||||
[[UIBarButtonItem appearance] setTitleTextAttributes:
|
[[UIBarButtonItem appearance] setTitleTextAttributes:
|
||||||
@{
|
@{
|
||||||
UITextAttributeTextColor : [UIColor colorWithRed:1.0f green:1.0f blue:1.0f alpha:1.0f],
|
NSForegroundColorAttributeName : [UIColor colorWithRed:1.0f green:1.0f blue:1.0f alpha:1.0f],
|
||||||
UITextAttributeTextShadowColor : [UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.5f],
|
NSShadowAttributeName : barButtonShadow,
|
||||||
UITextAttributeTextShadowOffset : [NSValue valueWithUIOffset:UIOffsetMake( 0, 1 )]//,
|
|
||||||
// Causes a bug in iOS where image views get oddly stretched... or something.
|
// Causes a bug in iOS where image views get oddly stretched... or something.
|
||||||
//UITextAttributeFont: [UIFont fontWithName:@"HelveticaNeue" size:13.0f]
|
//NSFontAttributeName: [UIFont fontWithName:@"HelveticaNeue" size:13.0f]
|
||||||
}
|
}
|
||||||
forState:UIControlStateNormal];
|
forState:UIControlStateNormal];
|
||||||
|
|
||||||
@ -257,7 +262,7 @@
|
|||||||
if (!importedSitesData)
|
if (!importedSitesData)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
PearlOverlay *activityOverlay = [PearlOverlay showOverlayWithTitle:@"Importing"];
|
PearlOverlay *activityOverlay = [PearlOverlay showProgressOverlayWithTitle:@"Importing"];
|
||||||
|
|
||||||
NSString *importedSitesString = [[NSString alloc] initWithData:importedSitesData encoding:NSUTF8StringEncoding];
|
NSString *importedSitesString = [[NSString alloc] initWithData:importedSitesData encoding:NSUTF8StringEncoding];
|
||||||
MPImportResult result = [self importSites:importedSitesString askImportPassword:^NSString *(NSString *userName) {
|
MPImportResult result = [self importSites:importedSitesString askImportPassword:^NSString *(NSString *userName) {
|
||||||
@ -727,7 +732,7 @@
|
|||||||
dispatch_async( dispatch_get_main_queue(), ^{
|
dispatch_async( dispatch_get_main_queue(), ^{
|
||||||
[self.handleCloudContentAlert cancelAlertAnimated:YES];
|
[self.handleCloudContentAlert cancelAlertAnimated:YES];
|
||||||
if (![self.storeLoading isVisible])
|
if (![self.storeLoading isVisible])
|
||||||
self.storeLoading = [PearlOverlay showOverlayWithTitle:@"Loading Sites"];
|
self.storeLoading = [PearlOverlay showProgressOverlayWithTitle:@"Loading Sites"];
|
||||||
} );
|
} );
|
||||||
|
|
||||||
[super ubiquityStoreManager:manager willLoadStoreIsCloud:isCloudStore];
|
[super ubiquityStoreManager:manager willLoadStoreIsCloud:isCloudStore];
|
||||||
@ -739,32 +744,47 @@
|
|||||||
[MPiOSConfig get].iCloudEnabled = @(isCloudStore);
|
[MPiOSConfig get].iCloudEnabled = @(isCloudStore);
|
||||||
[super ubiquityStoreManager:manager didLoadStoreForCoordinator:coordinator isCloud:isCloudStore];
|
[super ubiquityStoreManager:manager didLoadStoreForCoordinator:coordinator isCloud:isCloudStore];
|
||||||
|
|
||||||
dispatch_async( dispatch_get_main_queue(), ^{
|
|
||||||
[self.handleCloudContentAlert cancelAlertAnimated:YES];
|
[self.handleCloudContentAlert cancelAlertAnimated:YES];
|
||||||
[self.fixCloudContentAlert cancelAlertAnimated:YES];
|
[self.fixCloudContentAlert cancelAlertAnimated:YES];
|
||||||
[self.storeLoading cancelOverlayAnimated:YES];
|
[self.storeLoading cancelOverlayAnimated:YES];
|
||||||
} );
|
[self.handleCloudDisabledAlert cancelAlertAnimated:YES];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)ubiquityStoreManager:(UbiquityStoreManager *)manager failedLoadingStoreWithCause:(UbiquityStoreErrorCause)cause context:(id)context
|
- (void)ubiquityStoreManager:(UbiquityStoreManager *)manager failedLoadingStoreWithCause:(UbiquityStoreErrorCause)cause context:(id)context
|
||||||
wasCloud:(BOOL)wasCloudStore {
|
wasCloud:(BOOL)wasCloudStore {
|
||||||
|
|
||||||
dispatch_async( dispatch_get_main_queue(), ^{
|
|
||||||
[self.storeLoading cancelOverlayAnimated:YES];
|
[self.storeLoading cancelOverlayAnimated:YES];
|
||||||
} );
|
[self.handleCloudDisabledAlert cancelAlertAnimated:YES];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (BOOL)ubiquityStoreManager:(UbiquityStoreManager *)manager handleCloudContentCorruptionWithHealthyStore:(BOOL)storeHealthy {
|
- (BOOL)ubiquityStoreManager:(UbiquityStoreManager *)manager handleCloudContentCorruptionWithHealthyStore:(BOOL)storeHealthy {
|
||||||
|
|
||||||
if (manager.cloudEnabled && !storeHealthy && !([self.handleCloudContentAlert.alertView isVisible] || [self.fixCloudContentAlert.alertView isVisible]))
|
if (manager.cloudEnabled && !storeHealthy && !([self.handleCloudContentAlert.alertView isVisible] || [self.fixCloudContentAlert.alertView isVisible])) {
|
||||||
dispatch_async( dispatch_get_main_queue(), ^{
|
|
||||||
[self.storeLoading cancelOverlayAnimated:YES];
|
[self.storeLoading cancelOverlayAnimated:YES];
|
||||||
|
[self.handleCloudDisabledAlert cancelAlertAnimated:YES];
|
||||||
[self showCloudContentAlert];
|
[self showCloudContentAlert];
|
||||||
} );
|
};
|
||||||
|
|
||||||
return NO;
|
return NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (BOOL)ubiquityStoreManagerHandleCloudDisabled:(UbiquityStoreManager *)manager {
|
||||||
|
|
||||||
|
if (![self.handleCloudDisabledAlert isVisible])
|
||||||
|
self.handleCloudDisabledAlert = [PearlAlert showAlertWithTitle:@"iCloud Login" message:
|
||||||
|
@"You haven't added an iCloud account to your device yet.\n"
|
||||||
|
@"To add one, tap 'Wait For Me', go into Apple's Settings and add an iCloud account."
|
||||||
|
viewStyle:UIAlertViewStyleDefault initAlert:nil
|
||||||
|
tappedButtonBlock:^(UIAlertView *alert, NSInteger buttonIndex) {
|
||||||
|
if (buttonIndex == alert.firstOtherButtonIndex)
|
||||||
|
return;
|
||||||
|
|
||||||
|
[self.storeManager reloadStore];
|
||||||
|
} cancelTitle:@"Wait For Me" otherTitles:@"Disable iCloud", nil];
|
||||||
|
|
||||||
|
return YES;
|
||||||
|
}
|
||||||
|
|
||||||
- (void)showCloudContentAlert {
|
- (void)showCloudContentAlert {
|
||||||
|
|
||||||
__weak MPiOSAppDelegate *wSelf = self;
|
__weak MPiOSAppDelegate *wSelf = self;
|
||||||
|
@ -71,9 +71,10 @@
|
|||||||
</dict>
|
</dict>
|
||||||
<key>UIAppFonts</key>
|
<key>UIAppFonts</key>
|
||||||
<array>
|
<array>
|
||||||
<string>Exo-Bold.otf</string>
|
<string>Exo2.0-Bold.otf</string>
|
||||||
<string>Exo-ExtraBold.otf</string>
|
<string>Exo2.0-ExtraBold.otf</string>
|
||||||
<string>Exo-Regular.otf</string>
|
<string>Exo2.0-Regular.otf</string>
|
||||||
|
<string>Exo2.0-Thin.otf</string>
|
||||||
<string>SourceCodePro-Black.otf</string>
|
<string>SourceCodePro-Black.otf</string>
|
||||||
<string>SourceCodePro-ExtraLight.otf</string>
|
<string>SourceCodePro-ExtraLight.otf</string>
|
||||||
</array>
|
</array>
|
||||||
|
@ -12,27 +12,34 @@
|
|||||||
93D39262A8A97DB748213309 /* PearlEMail.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D393BB973253D4BAAC84AA /* PearlEMail.m */; };
|
93D39262A8A97DB748213309 /* PearlEMail.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D393BB973253D4BAAC84AA /* PearlEMail.m */; };
|
||||||
93D392EC39DA43C46C692C12 /* NSDictionary+Indexing.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D393B97158D7BE9332EA53 /* NSDictionary+Indexing.h */; };
|
93D392EC39DA43C46C692C12 /* NSDictionary+Indexing.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D393B97158D7BE9332EA53 /* NSDictionary+Indexing.h */; };
|
||||||
93D3932889B6B4206E66A6D6 /* PearlEMail.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D39F7C9F47BF6387FBC5C3 /* PearlEMail.h */; };
|
93D3932889B6B4206E66A6D6 /* PearlEMail.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D39F7C9F47BF6387FBC5C3 /* PearlEMail.h */; };
|
||||||
93D393543ACC701C018C74DA /* PearlUIView.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D393676C32D23A47E27957 /* PearlUIView.m */; };
|
93D39392DEDA376F93C6C718 /* MPCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39BAA71DE51B4D8A1286C /* MPCell.m */; };
|
||||||
93D394F6D3F6E2553AA0D684 /* MPPasswordStoredCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3947F6BB69CA9A9124A5D /* MPPasswordStoredCell.m */; };
|
93D393BA1B8402D08DB40231 /* MPPasswordElementCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39342E5F115EFCC90E976 /* MPPasswordElementCell.m */; };
|
||||||
|
93D394F6D3F6E2553AA0D684 /* MPPasswordLargeStoredCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3947F6BB69CA9A9124A5D /* MPPasswordLargeStoredCell.m */; };
|
||||||
|
93D3954E96236384AFA00453 /* UIScrollView+PearlAdjustInsets.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D390FB3110DCCE68E600DC /* UIScrollView+PearlAdjustInsets.m */; };
|
||||||
93D3954FCE045A3CC7E804B7 /* MPUsersViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D399E571F61E50A9BF8FAF /* MPUsersViewController.m */; };
|
93D3954FCE045A3CC7E804B7 /* MPUsersViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D399E571F61E50A9BF8FAF /* MPUsersViewController.m */; };
|
||||||
93D3957237D303DE2D38C267 /* MPAvatarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39B381350802A194BF332 /* MPAvatarCell.m */; };
|
93D3957237D303DE2D38C267 /* MPAvatarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39B381350802A194BF332 /* MPAvatarCell.m */; };
|
||||||
93D3959643EACF286D0152BA /* PearlUINavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39DDDAC305E8ABB4220C7 /* PearlUINavigationBar.m */; };
|
|
||||||
93D395F08A087F8A24689347 /* NSArray+Indexing.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39067C0AFDC581794E2B8 /* NSArray+Indexing.m */; };
|
93D395F08A087F8A24689347 /* NSArray+Indexing.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39067C0AFDC581794E2B8 /* NSArray+Indexing.m */; };
|
||||||
93D396AA30690B256F30378A /* PearlNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3956915634581E737B38C /* PearlNavigationController.m */; };
|
93D396AA30690B256F30378A /* PearlNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3956915634581E737B38C /* PearlNavigationController.m */; };
|
||||||
93D396BA1C74C4A06FD86437 /* PearlOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D3942A356B639724157982 /* PearlOverlay.h */; };
|
93D396BA1C74C4A06FD86437 /* PearlOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D3942A356B639724157982 /* PearlOverlay.h */; };
|
||||||
93D397952F5635C793C24DF1 /* NSError+PearlFullDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39F9106F2CCFB94283188 /* NSError+PearlFullDescription.m */; };
|
93D397952F5635C793C24DF1 /* NSError+PearlFullDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39F9106F2CCFB94283188 /* NSError+PearlFullDescription.m */; };
|
||||||
|
93D3980046016EFD05B35BC5 /* PearlUICollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D39B1D8177A86C5B9EDDE3 /* PearlUICollectionView.h */; };
|
||||||
|
93D399278165FD6D950F0025 /* MPPasswordTypesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39097C0AAE62C1C321BFC /* MPPasswordTypesCell.m */; };
|
||||||
93D3992FA1546E01F498F665 /* PearlNavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D398567FD02DB2647B8CF3 /* PearlNavigationController.h */; };
|
93D3992FA1546E01F498F665 /* PearlNavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D398567FD02DB2647B8CF3 /* PearlNavigationController.h */; };
|
||||||
93D399433EA75E50656040CB /* Twitter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 93D394077F8FAB8167647187 /* Twitter.framework */; };
|
93D399433EA75E50656040CB /* Twitter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 93D394077F8FAB8167647187 /* Twitter.framework */; };
|
||||||
93D399BBC0A7EC746CB1B19B /* MPLogsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D391943675426839501BB8 /* MPLogsViewController.h */; };
|
93D399BBC0A7EC746CB1B19B /* MPLogsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D391943675426839501BB8 /* MPLogsViewController.h */; };
|
||||||
|
93D39A5FF670957C0AF8298D /* MPPasswordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39DEA995041A13DC9CAF7 /* MPPasswordCell.m */; };
|
||||||
|
93D39A8EA1C49CE43B63F47B /* PearlUICollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39D8A953779B35403AF6E /* PearlUICollectionView.m */; };
|
||||||
|
93D39B76DD5AB108BA8928E8 /* UIScrollView+PearlAdjustInsets.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D39DE2CB351D4E3789462B /* UIScrollView+PearlAdjustInsets.h */; };
|
||||||
93D39B842AB9A5D072810D76 /* NSError+PearlFullDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D398C95847261903D781D3 /* NSError+PearlFullDescription.h */; };
|
93D39B842AB9A5D072810D76 /* NSError+PearlFullDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D398C95847261903D781D3 /* NSError+PearlFullDescription.h */; };
|
||||||
93D39B8F90F58A5D158DDBA3 /* MPPasswordsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3924EE15017F8A12CB436 /* MPPasswordsViewController.m */; };
|
93D39B8F90F58A5D158DDBA3 /* MPPasswordsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3924EE15017F8A12CB436 /* MPPasswordsViewController.m */; };
|
||||||
93D39C34FE35830EF5BE1D2A /* NSArray+Indexing.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D396D04E57792A54D437AC /* NSArray+Indexing.h */; };
|
93D39C34FE35830EF5BE1D2A /* NSArray+Indexing.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D396D04E57792A54D437AC /* NSArray+Indexing.h */; };
|
||||||
93D39C8AD8EAB747856B3A8C /* LLModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3923B42DA2DA18F287092 /* LLModel.m */; };
|
93D39C8AD8EAB747856B3A8C /* LLModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3923B42DA2DA18F287092 /* LLModel.m */; };
|
||||||
93D39CB5E2EC1078E898F46A /* MPPasswordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3937863061C3916AF7AD2 /* MPPasswordCell.m */; };
|
93D39CB5E2EC1078E898F46A /* MPPasswordLargeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3937863061C3916AF7AD2 /* MPPasswordLargeCell.m */; };
|
||||||
93D39D596A2E376D6F6F5DA1 /* MPCombinedViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D393310223DDB35218467A /* MPCombinedViewController.m */; };
|
93D39D596A2E376D6F6F5DA1 /* MPCombinedViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D393310223DDB35218467A /* MPCombinedViewController.m */; };
|
||||||
93D39E281E3658B30550CB55 /* NSDictionary+Indexing.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39AA1EE2E1E7B81372240 /* NSDictionary+Indexing.m */; };
|
93D39E281E3658B30550CB55 /* NSDictionary+Indexing.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39AA1EE2E1E7B81372240 /* NSDictionary+Indexing.m */; };
|
||||||
|
93D39EDD960C381D64E4DCDD /* MPPasswordSmallCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3952CC60991B97D69F26A /* MPPasswordSmallCell.m */; };
|
||||||
93D39F8A9254177891F38705 /* MPSetupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39A28369954D147E239BA /* MPSetupViewController.m */; };
|
93D39F8A9254177891F38705 /* MPSetupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D39A28369954D147E239BA /* MPSetupViewController.m */; };
|
||||||
93D39FA97F4C3F69A75D5A03 /* MPPasswordGeneratedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3993422E207BF0B21D089 /* MPPasswordGeneratedCell.m */; };
|
93D39FA97F4C3F69A75D5A03 /* MPPasswordLargeGeneratedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3993422E207BF0B21D089 /* MPPasswordLargeGeneratedCell.m */; };
|
||||||
DA04E33E14B1E70400ECA4F3 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA04E33D14B1E70400ECA4F3 /* MobileCoreServices.framework */; };
|
DA04E33E14B1E70400ECA4F3 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA04E33D14B1E70400ECA4F3 /* MobileCoreServices.framework */; };
|
||||||
DA095E75172F4CD8001C948B /* MPLogsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3979190DACEBD1F6AE9F4 /* MPLogsViewController.m */; };
|
DA095E75172F4CD8001C948B /* MPLogsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D3979190DACEBD1F6AE9F4 /* MPLogsViewController.m */; };
|
||||||
DA2CA4DD18D28859007798F8 /* NSArray+Pearl.m in Sources */ = {isa = PBXBuildFile; fileRef = DA2CA4D918D28859007798F8 /* NSArray+Pearl.m */; };
|
DA2CA4DD18D28859007798F8 /* NSArray+Pearl.m in Sources */ = {isa = PBXBuildFile; fileRef = DA2CA4D918D28859007798F8 /* NSArray+Pearl.m */; };
|
||||||
@ -69,11 +76,13 @@
|
|||||||
DA6701E016406BB400B61001 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA6701DF16406BB400B61001 /* AdSupport.framework */; settings = {ATTRIBUTES = (Required, ); }; };
|
DA6701E016406BB400B61001 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA6701DF16406BB400B61001 /* AdSupport.framework */; settings = {ATTRIBUTES = (Required, ); }; };
|
||||||
DA672D2F14F92C6B004A189C /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = DA672D2E14F92C6B004A189C /* libz.dylib */; };
|
DA672D2F14F92C6B004A189C /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = DA672D2E14F92C6B004A189C /* libz.dylib */; };
|
||||||
DA672D3014F9413D004A189C /* libPearl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DAC77CAD148291A600BCF976 /* libPearl.a */; };
|
DA672D3014F9413D004A189C /* libPearl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DAC77CAD148291A600BCF976 /* libPearl.a */; };
|
||||||
|
DA67460D18DE7F0C00DFE240 /* Exo2.0-Thin.otf in Resources */ = {isa = PBXBuildFile; fileRef = DA67460918DE7F0C00DFE240 /* Exo2.0-Thin.otf */; };
|
||||||
|
DA67460E18DE7F0C00DFE240 /* Exo2.0-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = DA67460A18DE7F0C00DFE240 /* Exo2.0-Regular.otf */; };
|
||||||
|
DA67460F18DE7F0C00DFE240 /* Exo2.0-ExtraBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = DA67460B18DE7F0C00DFE240 /* Exo2.0-ExtraBold.otf */; };
|
||||||
|
DA67461018DE7F0C00DFE240 /* Exo2.0-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = DA67460C18DE7F0C00DFE240 /* Exo2.0-Bold.otf */; };
|
||||||
DA69540617D975D900BF294E /* icon_gears.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD37841711E29500CF925C /* icon_gears.png */; };
|
DA69540617D975D900BF294E /* icon_gears.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD37841711E29500CF925C /* icon_gears.png */; };
|
||||||
DA69540717D975D900BF294E /* icon_gears@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD37851711E29500CF925C /* icon_gears@2x.png */; };
|
DA69540717D975D900BF294E /* icon_gears@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD37851711E29500CF925C /* icon_gears@2x.png */; };
|
||||||
DA70EC801811B13C00F65DB2 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA70EC7F1811B13C00F65DB2 /* StoreKit.framework */; };
|
DA70EC801811B13C00F65DB2 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA70EC7F1811B13C00F65DB2 /* StoreKit.framework */; };
|
||||||
DA829E52159847E0002417D3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA5BFA4A147E415C00F98B1E /* Foundation.framework */; };
|
|
||||||
DA829E6215984832002417D3 /* libFontReplacer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DA829E51159847E0002417D3 /* libFontReplacer.a */; };
|
|
||||||
DA854C8318D4CFBF00106317 /* avatar-add@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA854C8118D4CFBF00106317 /* avatar-add@2x.png */; };
|
DA854C8318D4CFBF00106317 /* avatar-add@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DA854C8118D4CFBF00106317 /* avatar-add@2x.png */; };
|
||||||
DA854C8418D4CFBF00106317 /* avatar-add.png in Resources */ = {isa = PBXBuildFile; fileRef = DA854C8218D4CFBF00106317 /* avatar-add.png */; };
|
DA854C8418D4CFBF00106317 /* avatar-add.png in Resources */ = {isa = PBXBuildFile; fileRef = DA854C8218D4CFBF00106317 /* avatar-add.png */; };
|
||||||
DA945C8717E3F3FD0053236B /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DA945C8617E3F3FD0053236B /* Images.xcassets */; };
|
DA945C8717E3F3FD0053236B /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DA945C8617E3F3FD0053236B /* Images.xcassets */; };
|
||||||
@ -147,9 +156,6 @@
|
|||||||
DABD395C1711E29700CF925C /* avatar-9@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD36911711E29400CF925C /* avatar-9@2x.png */; };
|
DABD395C1711E29700CF925C /* avatar-9@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD36911711E29400CF925C /* avatar-9@2x.png */; };
|
||||||
DABD395D1711E29700CF925C /* background.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD36931711E29400CF925C /* background.png */; };
|
DABD395D1711E29700CF925C /* background.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD36931711E29400CF925C /* background.png */; };
|
||||||
DABD395E1711E29700CF925C /* background@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD36941711E29400CF925C /* background@2x.png */; };
|
DABD395E1711E29700CF925C /* background@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD36941711E29400CF925C /* background@2x.png */; };
|
||||||
DABD39841711E29700CF925C /* Exo-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = DABD36BC1711E29500CF925C /* Exo-Bold.otf */; };
|
|
||||||
DABD39851711E29700CF925C /* Exo-ExtraBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = DABD36BD1711E29500CF925C /* Exo-ExtraBold.otf */; };
|
|
||||||
DABD39861711E29700CF925C /* Exo-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = DABD36BE1711E29500CF925C /* Exo-Regular.otf */; };
|
|
||||||
DABD39871711E29700CF925C /* SourceCodePro-Black.otf in Resources */ = {isa = PBXBuildFile; fileRef = DABD36BF1711E29500CF925C /* SourceCodePro-Black.otf */; };
|
DABD39871711E29700CF925C /* SourceCodePro-Black.otf in Resources */ = {isa = PBXBuildFile; fileRef = DABD36BF1711E29500CF925C /* SourceCodePro-Black.otf */; };
|
||||||
DABD39881711E29700CF925C /* SourceCodePro-ExtraLight.otf in Resources */ = {isa = PBXBuildFile; fileRef = DABD36C01711E29500CF925C /* SourceCodePro-ExtraLight.otf */; };
|
DABD39881711E29700CF925C /* SourceCodePro-ExtraLight.otf in Resources */ = {isa = PBXBuildFile; fileRef = DABD36C01711E29500CF925C /* SourceCodePro-ExtraLight.otf */; };
|
||||||
DABD39A01711E29700CF925C /* icon_action.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD36DA1711E29500CF925C /* icon_action.png */; };
|
DABD39A01711E29700CF925C /* icon_action.png in Resources */ = {isa = PBXBuildFile; fileRef = DABD36DA1711E29500CF925C /* icon_action.png */; };
|
||||||
@ -243,8 +249,6 @@
|
|||||||
DAC6326D148680650075AEA5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA5BFA4A147E415C00F98B1E /* Foundation.framework */; };
|
DAC6326D148680650075AEA5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA5BFA4A147E415C00F98B1E /* Foundation.framework */; };
|
||||||
DAC632891486D9690075AEA5 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DAC632871486D95D0075AEA5 /* Security.framework */; };
|
DAC632891486D9690075AEA5 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DAC632871486D95D0075AEA5 /* Security.framework */; };
|
||||||
DAC77CAE148291A600BCF976 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA5BFA4A147E415C00F98B1E /* Foundation.framework */; };
|
DAC77CAE148291A600BCF976 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA5BFA4A147E415C00F98B1E /* Foundation.framework */; };
|
||||||
DACA22161705DE13002C6C22 /* UIFont+Replacement.m in Sources */ = {isa = PBXBuildFile; fileRef = DACA22141705DE13002C6C22 /* UIFont+Replacement.m */; };
|
|
||||||
DACA22171705DE13002C6C22 /* UIFont+Replacement.h in Headers */ = {isa = PBXBuildFile; fileRef = DACA22151705DE13002C6C22 /* UIFont+Replacement.h */; };
|
|
||||||
DACA22191705DE28002C6C22 /* Crashlytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DACA22181705DE28002C6C22 /* Crashlytics.framework */; };
|
DACA22191705DE28002C6C22 /* Crashlytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DACA22181705DE28002C6C22 /* Crashlytics.framework */; };
|
||||||
DACA22BB1705DE7D002C6C22 /* UbiquityStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DACA22B71705DE7D002C6C22 /* UbiquityStoreManager.m */; };
|
DACA22BB1705DE7D002C6C22 /* UbiquityStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DACA22B71705DE7D002C6C22 /* UbiquityStoreManager.m */; };
|
||||||
DACA22BC1705DE7D002C6C22 /* NSError+UbiquityStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DACA22B81705DE7D002C6C22 /* NSError+UbiquityStoreManager.h */; };
|
DACA22BC1705DE7D002C6C22 /* NSError+UbiquityStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DACA22B81705DE7D002C6C22 /* NSError+UbiquityStoreManager.h */; };
|
||||||
@ -373,6 +377,10 @@
|
|||||||
DAEB938218AA537D000490CC /* x509_vfy.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEB933118AA537D000490CC /* x509_vfy.h */; };
|
DAEB938218AA537D000490CC /* x509_vfy.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEB933118AA537D000490CC /* x509_vfy.h */; };
|
||||||
DAEB938318AA537D000490CC /* x509v3.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEB933218AA537D000490CC /* x509v3.h */; };
|
DAEB938318AA537D000490CC /* x509v3.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEB933218AA537D000490CC /* x509v3.h */; };
|
||||||
DAEBC45314F6364500987BF6 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DAEBC45214F6364500987BF6 /* QuartzCore.framework */; };
|
DAEBC45314F6364500987BF6 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DAEBC45214F6364500987BF6 /* QuartzCore.framework */; };
|
||||||
|
DAEC85B518E3DD9A007FC0DF /* PearlUIView.m in Sources */ = {isa = PBXBuildFile; fileRef = DAEC85B118E3DD9A007FC0DF /* PearlUIView.m */; };
|
||||||
|
DAEC85B618E3DD9A007FC0DF /* PearlUINavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = DAEC85B218E3DD9A007FC0DF /* PearlUINavigationBar.m */; };
|
||||||
|
DAEC85B718E3DD9A007FC0DF /* PearlUINavigationBar.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEC85B318E3DD9A007FC0DF /* PearlUINavigationBar.h */; };
|
||||||
|
DAEC85B818E3DD9A007FC0DF /* PearlUIView.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEC85B418E3DD9A007FC0DF /* PearlUIView.h */; };
|
||||||
DAFC5656172C573B00CB5CC5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA5BFA4A147E415C00F98B1E /* Foundation.framework */; };
|
DAFC5656172C573B00CB5CC5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA5BFA4A147E415C00F98B1E /* Foundation.framework */; };
|
||||||
DAFC5683172C57EC00CB5CC5 /* IASKAppSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DAFC5665172C57EC00CB5CC5 /* IASKAppSettingsViewController.m */; };
|
DAFC5683172C57EC00CB5CC5 /* IASKAppSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DAFC5665172C57EC00CB5CC5 /* IASKAppSettingsViewController.m */; };
|
||||||
DAFC5684172C57EC00CB5CC5 /* IASKAppSettingsWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DAFC5667172C57EC00CB5CC5 /* IASKAppSettingsWebViewController.m */; };
|
DAFC5684172C57EC00CB5CC5 /* IASKAppSettingsWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DAFC5667172C57EC00CB5CC5 /* IASKAppSettingsWebViewController.m */; };
|
||||||
@ -502,46 +510,56 @@
|
|||||||
/* End PBXCopyFilesBuildPhase section */
|
/* End PBXCopyFilesBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
|
93D390519405B76CC6A57C4F /* MPCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPCell.h; sourceTree = "<group>"; };
|
||||||
93D39067C0AFDC581794E2B8 /* NSArray+Indexing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+Indexing.m"; sourceTree = "<group>"; };
|
93D39067C0AFDC581794E2B8 /* NSArray+Indexing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+Indexing.m"; sourceTree = "<group>"; };
|
||||||
93D39083C93D90C4B94541AD /* PearlUIView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlUIView.h; sourceTree = "<group>"; };
|
93D39097C0AAE62C1C321BFC /* MPPasswordTypesCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordTypesCell.m; sourceTree = "<group>"; };
|
||||||
93D390A66F69AB1CDB0BFF93 /* LLModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLModel.h; sourceTree = "<group>"; };
|
93D390A66F69AB1CDB0BFF93 /* LLModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLModel.h; sourceTree = "<group>"; };
|
||||||
93D390EEC85E94D9C888643F /* PearlUINavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlUINavigationBar.h; sourceTree = "<group>"; };
|
|
||||||
93D390FADEB325D8D54A957D /* PearlOverlay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlOverlay.m; sourceTree = "<group>"; };
|
93D390FADEB325D8D54A957D /* PearlOverlay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlOverlay.m; sourceTree = "<group>"; };
|
||||||
|
93D390FB3110DCCE68E600DC /* UIScrollView+PearlAdjustInsets.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+PearlAdjustInsets.m"; sourceTree = "<group>"; };
|
||||||
|
93D391243F64A77798B4D6A4 /* MPPasswordTypesCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordTypesCell.h; sourceTree = "<group>"; };
|
||||||
93D3914D7597F9A28DB9D85E /* MPPasswordsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordsViewController.h; sourceTree = "<group>"; };
|
93D3914D7597F9A28DB9D85E /* MPPasswordsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordsViewController.h; sourceTree = "<group>"; };
|
||||||
93D391943675426839501BB8 /* MPLogsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPLogsViewController.h; sourceTree = "<group>"; };
|
93D391943675426839501BB8 /* MPLogsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPLogsViewController.h; sourceTree = "<group>"; };
|
||||||
93D3923B42DA2DA18F287092 /* LLModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLModel.m; sourceTree = "<group>"; };
|
93D3923B42DA2DA18F287092 /* LLModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLModel.m; sourceTree = "<group>"; };
|
||||||
93D3924EE15017F8A12CB436 /* MPPasswordsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordsViewController.m; sourceTree = "<group>"; };
|
93D3924EE15017F8A12CB436 /* MPPasswordsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordsViewController.m; sourceTree = "<group>"; };
|
||||||
|
93D3932D6C25F2C2D929F8A1 /* MPPasswordElementCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordElementCell.h; sourceTree = "<group>"; };
|
||||||
93D393310223DDB35218467A /* MPCombinedViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPCombinedViewController.m; sourceTree = "<group>"; };
|
93D393310223DDB35218467A /* MPCombinedViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPCombinedViewController.m; sourceTree = "<group>"; };
|
||||||
93D393676C32D23A47E27957 /* PearlUIView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlUIView.m; sourceTree = "<group>"; };
|
93D39342E5F115EFCC90E976 /* MPPasswordElementCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordElementCell.m; sourceTree = "<group>"; };
|
||||||
93D3937863061C3916AF7AD2 /* MPPasswordCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordCell.m; sourceTree = "<group>"; };
|
93D3937863061C3916AF7AD2 /* MPPasswordLargeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordLargeCell.m; sourceTree = "<group>"; };
|
||||||
93D393B97158D7BE9332EA53 /* NSDictionary+Indexing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Indexing.h"; sourceTree = "<group>"; };
|
93D393B97158D7BE9332EA53 /* NSDictionary+Indexing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Indexing.h"; sourceTree = "<group>"; };
|
||||||
93D393BB973253D4BAAC84AA /* PearlEMail.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlEMail.m; sourceTree = "<group>"; };
|
93D393BB973253D4BAAC84AA /* PearlEMail.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlEMail.m; sourceTree = "<group>"; };
|
||||||
93D394077F8FAB8167647187 /* Twitter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Twitter.framework; path = System/Library/Frameworks/Twitter.framework; sourceTree = SDKROOT; };
|
93D394077F8FAB8167647187 /* Twitter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Twitter.framework; path = System/Library/Frameworks/Twitter.framework; sourceTree = SDKROOT; };
|
||||||
93D3942A356B639724157982 /* PearlOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlOverlay.h; sourceTree = "<group>"; };
|
93D3942A356B639724157982 /* PearlOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlOverlay.h; sourceTree = "<group>"; };
|
||||||
93D3947F6BB69CA9A9124A5D /* MPPasswordStoredCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordStoredCell.m; sourceTree = "<group>"; };
|
93D3947F6BB69CA9A9124A5D /* MPPasswordLargeStoredCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordLargeStoredCell.m; sourceTree = "<group>"; };
|
||||||
|
93D3952CC60991B97D69F26A /* MPPasswordSmallCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordSmallCell.m; sourceTree = "<group>"; };
|
||||||
93D3956915634581E737B38C /* PearlNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlNavigationController.m; sourceTree = "<group>"; };
|
93D3956915634581E737B38C /* PearlNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlNavigationController.m; sourceTree = "<group>"; };
|
||||||
93D395BA6B2CFF5F49A4D25F /* MPPasswordStoredCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordStoredCell.h; sourceTree = "<group>"; };
|
93D395BA6B2CFF5F49A4D25F /* MPPasswordLargeStoredCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordLargeStoredCell.h; sourceTree = "<group>"; };
|
||||||
93D396D04E57792A54D437AC /* NSArray+Indexing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+Indexing.h"; sourceTree = "<group>"; };
|
93D396D04E57792A54D437AC /* NSArray+Indexing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+Indexing.h"; sourceTree = "<group>"; };
|
||||||
93D3971FE104BB4052484151 /* MPUsersViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPUsersViewController.h; sourceTree = "<group>"; };
|
93D3971FE104BB4052484151 /* MPUsersViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPUsersViewController.h; sourceTree = "<group>"; };
|
||||||
93D39730673227EFF6DEFF19 /* MPSetupViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPSetupViewController.h; sourceTree = "<group>"; };
|
93D39730673227EFF6DEFF19 /* MPSetupViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPSetupViewController.h; sourceTree = "<group>"; };
|
||||||
93D3979190DACEBD1F6AE9F4 /* MPLogsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPLogsViewController.m; sourceTree = "<group>"; };
|
93D3979190DACEBD1F6AE9F4 /* MPLogsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPLogsViewController.m; sourceTree = "<group>"; };
|
||||||
93D3983278751A530262F64E /* LLConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLConfig.h; sourceTree = "<group>"; };
|
93D3983278751A530262F64E /* LLConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLConfig.h; sourceTree = "<group>"; };
|
||||||
93D398567FD02DB2647B8CF3 /* PearlNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlNavigationController.h; sourceTree = "<group>"; };
|
93D398567FD02DB2647B8CF3 /* PearlNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlNavigationController.h; sourceTree = "<group>"; };
|
||||||
|
93D39888EE06F06264CC963B /* MPPasswordSmallCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordSmallCell.h; sourceTree = "<group>"; };
|
||||||
93D398C95847261903D781D3 /* NSError+PearlFullDescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSError+PearlFullDescription.h"; sourceTree = "<group>"; };
|
93D398C95847261903D781D3 /* NSError+PearlFullDescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSError+PearlFullDescription.h"; sourceTree = "<group>"; };
|
||||||
93D3993422E207BF0B21D089 /* MPPasswordGeneratedCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordGeneratedCell.m; sourceTree = "<group>"; };
|
93D3993422E207BF0B21D089 /* MPPasswordLargeGeneratedCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordLargeGeneratedCell.m; sourceTree = "<group>"; };
|
||||||
|
93D39975CE5AEC99E3F086C7 /* MPPasswordCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordCell.h; sourceTree = "<group>"; };
|
||||||
93D399E571F61E50A9BF8FAF /* MPUsersViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPUsersViewController.m; sourceTree = "<group>"; };
|
93D399E571F61E50A9BF8FAF /* MPUsersViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPUsersViewController.m; sourceTree = "<group>"; };
|
||||||
93D39A28369954D147E239BA /* MPSetupViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPSetupViewController.m; sourceTree = "<group>"; };
|
93D39A28369954D147E239BA /* MPSetupViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPSetupViewController.m; sourceTree = "<group>"; };
|
||||||
93D39A3CC4D8330831FC8CB4 /* LLToggleViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLToggleViewController.h; sourceTree = "<group>"; };
|
93D39A3CC4D8330831FC8CB4 /* LLToggleViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLToggleViewController.h; sourceTree = "<group>"; };
|
||||||
93D39AA1EE2E1E7B81372240 /* NSDictionary+Indexing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Indexing.m"; sourceTree = "<group>"; };
|
93D39AA1EE2E1E7B81372240 /* NSDictionary+Indexing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Indexing.m"; sourceTree = "<group>"; };
|
||||||
|
93D39B1D8177A86C5B9EDDE3 /* PearlUICollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlUICollectionView.h; sourceTree = "<group>"; };
|
||||||
93D39B381350802A194BF332 /* MPAvatarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPAvatarCell.m; sourceTree = "<group>"; };
|
93D39B381350802A194BF332 /* MPAvatarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPAvatarCell.m; sourceTree = "<group>"; };
|
||||||
93D39BA6C5CB452973918B7D /* LLButtonView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLButtonView.h; sourceTree = "<group>"; };
|
93D39BA6C5CB452973918B7D /* LLButtonView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLButtonView.h; sourceTree = "<group>"; };
|
||||||
|
93D39BAA71DE51B4D8A1286C /* MPCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPCell.m; sourceTree = "<group>"; };
|
||||||
93D39BF6BCBDFFE844E7D34C /* LLButtonView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLButtonView.m; sourceTree = "<group>"; };
|
93D39BF6BCBDFFE844E7D34C /* LLButtonView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLButtonView.m; sourceTree = "<group>"; };
|
||||||
93D39C8E26B06F01566785B7 /* LLToggleViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLToggleViewController.m; sourceTree = "<group>"; };
|
93D39C8E26B06F01566785B7 /* LLToggleViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLToggleViewController.m; sourceTree = "<group>"; };
|
||||||
93D39CE1138FDA4D3D1B847A /* MPPasswordGeneratedCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordGeneratedCell.h; sourceTree = "<group>"; };
|
93D39CE1138FDA4D3D1B847A /* MPPasswordLargeGeneratedCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordLargeGeneratedCell.h; sourceTree = "<group>"; };
|
||||||
93D39CF8ADF4542CDC4CD385 /* MPCombinedViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPCombinedViewController.h; sourceTree = "<group>"; };
|
93D39CF8ADF4542CDC4CD385 /* MPCombinedViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPCombinedViewController.h; sourceTree = "<group>"; };
|
||||||
|
93D39D8A953779B35403AF6E /* PearlUICollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlUICollectionView.m; sourceTree = "<group>"; };
|
||||||
93D39DA27D768B53C8B1330C /* MPAvatarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPAvatarCell.h; sourceTree = "<group>"; };
|
93D39DA27D768B53C8B1330C /* MPAvatarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPAvatarCell.h; sourceTree = "<group>"; };
|
||||||
93D39DDDAC305E8ABB4220C7 /* PearlUINavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlUINavigationBar.m; sourceTree = "<group>"; };
|
93D39DE2CB351D4E3789462B /* UIScrollView+PearlAdjustInsets.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+PearlAdjustInsets.h"; sourceTree = "<group>"; };
|
||||||
93D39E02F69CACAB61C056F8 /* MPPasswordCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordCell.h; sourceTree = "<group>"; };
|
93D39DEA995041A13DC9CAF7 /* MPPasswordCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MPPasswordCell.m; sourceTree = "<group>"; };
|
||||||
|
93D39E02F69CACAB61C056F8 /* MPPasswordLargeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPPasswordLargeCell.h; sourceTree = "<group>"; };
|
||||||
93D39F7C9F47BF6387FBC5C3 /* PearlEMail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlEMail.h; sourceTree = "<group>"; };
|
93D39F7C9F47BF6387FBC5C3 /* PearlEMail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlEMail.h; sourceTree = "<group>"; };
|
||||||
93D39F9106F2CCFB94283188 /* NSError+PearlFullDescription.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSError+PearlFullDescription.m"; sourceTree = "<group>"; };
|
93D39F9106F2CCFB94283188 /* NSError+PearlFullDescription.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSError+PearlFullDescription.m"; sourceTree = "<group>"; };
|
||||||
DA04E33D14B1E70400ECA4F3 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
|
DA04E33D14B1E70400ECA4F3 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
|
||||||
@ -579,8 +597,11 @@
|
|||||||
DA6701DD16406B7300B61001 /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; };
|
DA6701DD16406B7300B61001 /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; };
|
||||||
DA6701DF16406BB400B61001 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
|
DA6701DF16406BB400B61001 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
|
||||||
DA672D2E14F92C6B004A189C /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
|
DA672D2E14F92C6B004A189C /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
|
||||||
|
DA67460918DE7F0C00DFE240 /* Exo2.0-Thin.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Exo2.0-Thin.otf"; sourceTree = "<group>"; };
|
||||||
|
DA67460A18DE7F0C00DFE240 /* Exo2.0-Regular.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Exo2.0-Regular.otf"; sourceTree = "<group>"; };
|
||||||
|
DA67460B18DE7F0C00DFE240 /* Exo2.0-ExtraBold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Exo2.0-ExtraBold.otf"; sourceTree = "<group>"; };
|
||||||
|
DA67460C18DE7F0C00DFE240 /* Exo2.0-Bold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Exo2.0-Bold.otf"; sourceTree = "<group>"; };
|
||||||
DA70EC7F1811B13C00F65DB2 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; };
|
DA70EC7F1811B13C00F65DB2 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; };
|
||||||
DA829E51159847E0002417D3 /* libFontReplacer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libFontReplacer.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
||||||
DA854C8118D4CFBF00106317 /* avatar-add@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "avatar-add@2x.png"; sourceTree = "<group>"; };
|
DA854C8118D4CFBF00106317 /* avatar-add@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "avatar-add@2x.png"; sourceTree = "<group>"; };
|
||||||
DA854C8218D4CFBF00106317 /* avatar-add.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "avatar-add.png"; sourceTree = "<group>"; };
|
DA854C8218D4CFBF00106317 /* avatar-add.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "avatar-add.png"; sourceTree = "<group>"; };
|
||||||
DA945C8617E3F3FD0053236B /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
|
DA945C8617E3F3FD0053236B /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
|
||||||
@ -722,9 +743,6 @@
|
|||||||
DABD36911711E29400CF925C /* avatar-9@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "avatar-9@2x.png"; sourceTree = "<group>"; };
|
DABD36911711E29400CF925C /* avatar-9@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "avatar-9@2x.png"; sourceTree = "<group>"; };
|
||||||
DABD36931711E29400CF925C /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
|
DABD36931711E29400CF925C /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
|
||||||
DABD36941711E29400CF925C /* background@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "background@2x.png"; sourceTree = "<group>"; };
|
DABD36941711E29400CF925C /* background@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "background@2x.png"; sourceTree = "<group>"; };
|
||||||
DABD36BC1711E29500CF925C /* Exo-Bold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Exo-Bold.otf"; sourceTree = "<group>"; };
|
|
||||||
DABD36BD1711E29500CF925C /* Exo-ExtraBold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Exo-ExtraBold.otf"; sourceTree = "<group>"; };
|
|
||||||
DABD36BE1711E29500CF925C /* Exo-Regular.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Exo-Regular.otf"; sourceTree = "<group>"; };
|
|
||||||
DABD36BF1711E29500CF925C /* SourceCodePro-Black.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SourceCodePro-Black.otf"; sourceTree = "<group>"; };
|
DABD36BF1711E29500CF925C /* SourceCodePro-Black.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SourceCodePro-Black.otf"; sourceTree = "<group>"; };
|
||||||
DABD36C01711E29500CF925C /* SourceCodePro-ExtraLight.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SourceCodePro-ExtraLight.otf"; sourceTree = "<group>"; };
|
DABD36C01711E29500CF925C /* SourceCodePro-ExtraLight.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SourceCodePro-ExtraLight.otf"; sourceTree = "<group>"; };
|
||||||
DABD36DA1711E29500CF925C /* icon_action.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_action.png; sourceTree = "<group>"; };
|
DABD36DA1711E29500CF925C /* icon_action.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_action.png; sourceTree = "<group>"; };
|
||||||
@ -1305,8 +1323,6 @@
|
|||||||
DAC632871486D95D0075AEA5 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
|
DAC632871486D95D0075AEA5 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
|
||||||
DAC77CAD148291A600BCF976 /* libPearl.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPearl.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
DAC77CAD148291A600BCF976 /* libPearl.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPearl.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
DAC77CB1148291A600BCF976 /* Pearl-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "Pearl-Prefix.pch"; path = "../../MasterPassword/ObjC/Pearl/Pearl-Prefix.pch"; sourceTree = "<group>"; };
|
DAC77CB1148291A600BCF976 /* Pearl-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "Pearl-Prefix.pch"; path = "../../MasterPassword/ObjC/Pearl/Pearl-Prefix.pch"; sourceTree = "<group>"; };
|
||||||
DACA22141705DE13002C6C22 /* UIFont+Replacement.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIFont+Replacement.m"; sourceTree = "<group>"; };
|
|
||||||
DACA22151705DE13002C6C22 /* UIFont+Replacement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIFont+Replacement.h"; sourceTree = "<group>"; };
|
|
||||||
DACA22181705DE28002C6C22 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crashlytics.framework; sourceTree = "<group>"; };
|
DACA22181705DE28002C6C22 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crashlytics.framework; sourceTree = "<group>"; };
|
||||||
DACA22B71705DE7D002C6C22 /* UbiquityStoreManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UbiquityStoreManager.m; sourceTree = "<group>"; };
|
DACA22B71705DE7D002C6C22 /* UbiquityStoreManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UbiquityStoreManager.m; sourceTree = "<group>"; };
|
||||||
DACA22B81705DE7D002C6C22 /* NSError+UbiquityStoreManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSError+UbiquityStoreManager.h"; sourceTree = "<group>"; };
|
DACA22B81705DE7D002C6C22 /* NSError+UbiquityStoreManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSError+UbiquityStoreManager.h"; sourceTree = "<group>"; };
|
||||||
@ -1439,6 +1455,10 @@
|
|||||||
DAEB933118AA537D000490CC /* x509_vfy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = "<group>"; };
|
DAEB933118AA537D000490CC /* x509_vfy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = "<group>"; };
|
||||||
DAEB933218AA537D000490CC /* x509v3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = "<group>"; };
|
DAEB933218AA537D000490CC /* x509v3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = "<group>"; };
|
||||||
DAEBC45214F6364500987BF6 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
DAEBC45214F6364500987BF6 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
|
||||||
|
DAEC85B118E3DD9A007FC0DF /* PearlUIView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlUIView.m; sourceTree = "<group>"; };
|
||||||
|
DAEC85B218E3DD9A007FC0DF /* PearlUINavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PearlUINavigationBar.m; sourceTree = "<group>"; };
|
||||||
|
DAEC85B318E3DD9A007FC0DF /* PearlUINavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlUINavigationBar.h; sourceTree = "<group>"; };
|
||||||
|
DAEC85B418E3DD9A007FC0DF /* PearlUIView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PearlUIView.h; sourceTree = "<group>"; };
|
||||||
DAFC5655172C573B00CB5CC5 /* libInAppSettingsKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libInAppSettingsKit.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
DAFC5655172C573B00CB5CC5 /* libInAppSettingsKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libInAppSettingsKit.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
DAFC5659172C573B00CB5CC5 /* InAppSettingsKit-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "InAppSettingsKit-Prefix.pch"; sourceTree = "<group>"; };
|
DAFC5659172C573B00CB5CC5 /* InAppSettingsKit-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "InAppSettingsKit-Prefix.pch"; sourceTree = "<group>"; };
|
||||||
DAFC565A172C573B00CB5CC5 /* InAppSettingsKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InAppSettingsKit.h; sourceTree = "<group>"; };
|
DAFC565A172C573B00CB5CC5 /* InAppSettingsKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InAppSettingsKit.h; sourceTree = "<group>"; };
|
||||||
@ -1585,7 +1605,6 @@
|
|||||||
DA6701E016406BB400B61001 /* AdSupport.framework in Frameworks */,
|
DA6701E016406BB400B61001 /* AdSupport.framework in Frameworks */,
|
||||||
DA6701DE16406B7300B61001 /* Social.framework in Frameworks */,
|
DA6701DE16406B7300B61001 /* Social.framework in Frameworks */,
|
||||||
DA6701B816406A4100B61001 /* Accounts.framework in Frameworks */,
|
DA6701B816406A4100B61001 /* Accounts.framework in Frameworks */,
|
||||||
DA829E6215984832002417D3 /* libFontReplacer.a in Frameworks */,
|
|
||||||
DA44260A1557D9E40052177D /* libUbiquityStoreManager.a in Frameworks */,
|
DA44260A1557D9E40052177D /* libUbiquityStoreManager.a in Frameworks */,
|
||||||
DAD312C21552A22700A3F9ED /* libsqlite3.dylib in Frameworks */,
|
DAD312C21552A22700A3F9ED /* libsqlite3.dylib in Frameworks */,
|
||||||
DAD312BF1552A1BD00A3F9ED /* libLocalytics.a in Frameworks */,
|
DAD312BF1552A1BD00A3F9ED /* libLocalytics.a in Frameworks */,
|
||||||
@ -1608,14 +1627,6 @@
|
|||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
DA829E4E159847E0002417D3 /* Frameworks */ = {
|
|
||||||
isa = PBXFrameworksBuildPhase;
|
|
||||||
buildActionMask = 2147483647;
|
|
||||||
files = (
|
|
||||||
DA829E52159847E0002417D3 /* Foundation.framework in Frameworks */,
|
|
||||||
);
|
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
|
||||||
};
|
|
||||||
DAC6325A1486805C0075AEA5 /* Frameworks */ = {
|
DAC6325A1486805C0075AEA5 /* Frameworks */ = {
|
||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
@ -1688,14 +1699,8 @@
|
|||||||
DAFC5657172C573B00CB5CC5 /* InAppSettingsKit */,
|
DAFC5657172C573B00CB5CC5 /* InAppSettingsKit */,
|
||||||
DA5BFA47147E415C00F98B1E /* Frameworks */,
|
DA5BFA47147E415C00F98B1E /* Frameworks */,
|
||||||
DA5BFA45147E415C00F98B1E /* Products */,
|
DA5BFA45147E415C00F98B1E /* Products */,
|
||||||
93D399E571F61E50A9BF8FAF /* MPUsersViewController.m */,
|
93D39975CE5AEC99E3F086C7 /* MPPasswordCell.h */,
|
||||||
93D3971FE104BB4052484151 /* MPUsersViewController.h */,
|
93D39DEA995041A13DC9CAF7 /* MPPasswordCell.m */,
|
||||||
93D393676C32D23A47E27957 /* PearlUIView.m */,
|
|
||||||
93D39083C93D90C4B94541AD /* PearlUIView.h */,
|
|
||||||
93D39E02F69CACAB61C056F8 /* MPPasswordCell.h */,
|
|
||||||
93D3937863061C3916AF7AD2 /* MPPasswordCell.m */,
|
|
||||||
93D395BA6B2CFF5F49A4D25F /* MPPasswordStoredCell.h */,
|
|
||||||
93D3947F6BB69CA9A9124A5D /* MPPasswordStoredCell.m */,
|
|
||||||
);
|
);
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
@ -1708,7 +1713,6 @@
|
|||||||
DAC6326C148680650075AEA5 /* libjrswizzle.a */,
|
DAC6326C148680650075AEA5 /* libjrswizzle.a */,
|
||||||
DAD3127115528CD200A3F9ED /* libLocalytics.a */,
|
DAD3127115528CD200A3F9ED /* libLocalytics.a */,
|
||||||
DA4425CB1557BED40052177D /* libUbiquityStoreManager.a */,
|
DA4425CB1557BED40052177D /* libUbiquityStoreManager.a */,
|
||||||
DA829E51159847E0002417D3 /* libFontReplacer.a */,
|
|
||||||
DAFC5655172C573B00CB5CC5 /* libInAppSettingsKit.a */,
|
DAFC5655172C573B00CB5CC5 /* libInAppSettingsKit.a */,
|
||||||
DAE1EF2917ED112600BC0086 /* libDCIntrospect.a */,
|
DAE1EF2917ED112600BC0086 /* libDCIntrospect.a */,
|
||||||
DADEF4221810D5530052CA3E /* libLoveLyndir.a */,
|
DADEF4221810D5530052CA3E /* libLoveLyndir.a */,
|
||||||
@ -1965,9 +1969,10 @@
|
|||||||
DABD36BB1711E29500CF925C /* Fonts */ = {
|
DABD36BB1711E29500CF925C /* Fonts */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
DABD36BC1711E29500CF925C /* Exo-Bold.otf */,
|
DA67460918DE7F0C00DFE240 /* Exo2.0-Thin.otf */,
|
||||||
DABD36BD1711E29500CF925C /* Exo-ExtraBold.otf */,
|
DA67460A18DE7F0C00DFE240 /* Exo2.0-Regular.otf */,
|
||||||
DABD36BE1711E29500CF925C /* Exo-Regular.otf */,
|
DA67460B18DE7F0C00DFE240 /* Exo2.0-ExtraBold.otf */,
|
||||||
|
DA67460C18DE7F0C00DFE240 /* Exo2.0-Bold.otf */,
|
||||||
DABD36BF1711E29500CF925C /* SourceCodePro-Black.otf */,
|
DABD36BF1711E29500CF925C /* SourceCodePro-Black.otf */,
|
||||||
DABD36C01711E29500CF925C /* SourceCodePro-ExtraLight.otf */,
|
DABD36C01711E29500CF925C /* SourceCodePro-ExtraLight.otf */,
|
||||||
);
|
);
|
||||||
@ -2552,10 +2557,22 @@
|
|||||||
DA38D6A218CCB5BF009AEB3E /* Storyboard.storyboard */,
|
DA38D6A218CCB5BF009AEB3E /* Storyboard.storyboard */,
|
||||||
93D39B381350802A194BF332 /* MPAvatarCell.m */,
|
93D39B381350802A194BF332 /* MPAvatarCell.m */,
|
||||||
93D39DA27D768B53C8B1330C /* MPAvatarCell.h */,
|
93D39DA27D768B53C8B1330C /* MPAvatarCell.h */,
|
||||||
93D39DDDAC305E8ABB4220C7 /* PearlUINavigationBar.m */,
|
93D3993422E207BF0B21D089 /* MPPasswordLargeGeneratedCell.m */,
|
||||||
93D390EEC85E94D9C888643F /* PearlUINavigationBar.h */,
|
93D39CE1138FDA4D3D1B847A /* MPPasswordLargeGeneratedCell.h */,
|
||||||
93D3993422E207BF0B21D089 /* MPPasswordGeneratedCell.m */,
|
93D399E571F61E50A9BF8FAF /* MPUsersViewController.m */,
|
||||||
93D39CE1138FDA4D3D1B847A /* MPPasswordGeneratedCell.h */,
|
93D3971FE104BB4052484151 /* MPUsersViewController.h */,
|
||||||
|
93D39E02F69CACAB61C056F8 /* MPPasswordLargeCell.h */,
|
||||||
|
93D3937863061C3916AF7AD2 /* MPPasswordLargeCell.m */,
|
||||||
|
93D395BA6B2CFF5F49A4D25F /* MPPasswordLargeStoredCell.h */,
|
||||||
|
93D3947F6BB69CA9A9124A5D /* MPPasswordLargeStoredCell.m */,
|
||||||
|
93D39BAA71DE51B4D8A1286C /* MPCell.m */,
|
||||||
|
93D390519405B76CC6A57C4F /* MPCell.h */,
|
||||||
|
93D39097C0AAE62C1C321BFC /* MPPasswordTypesCell.m */,
|
||||||
|
93D391243F64A77798B4D6A4 /* MPPasswordTypesCell.h */,
|
||||||
|
93D3952CC60991B97D69F26A /* MPPasswordSmallCell.m */,
|
||||||
|
93D39888EE06F06264CC963B /* MPPasswordSmallCell.h */,
|
||||||
|
93D39342E5F115EFCC90E976 /* MPPasswordElementCell.m */,
|
||||||
|
93D3932D6C25F2C2D929F8A1 /* MPPasswordElementCell.h */,
|
||||||
);
|
);
|
||||||
path = iOS;
|
path = iOS;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@ -2581,7 +2598,6 @@
|
|||||||
DABF632217B744F900DA7E38 /* GoogleOpenSource.framework */,
|
DABF632217B744F900DA7E38 /* GoogleOpenSource.framework */,
|
||||||
DABF632317B744F900DA7E38 /* GooglePlus.framework */,
|
DABF632317B744F900DA7E38 /* GooglePlus.framework */,
|
||||||
DACA22181705DE28002C6C22 /* Crashlytics.framework */,
|
DACA22181705DE28002C6C22 /* Crashlytics.framework */,
|
||||||
DACA22131705DE13002C6C22 /* UIFont+Replacement */,
|
|
||||||
DAFC5662172C57EC00CB5CC5 /* InAppSettingsKit */,
|
DAFC5662172C57EC00CB5CC5 /* InAppSettingsKit */,
|
||||||
DACA22C71705DEB0002C6C22 /* Localytics */,
|
DACA22C71705DEB0002C6C22 /* Localytics */,
|
||||||
DAC77CAF148291A600BCF976 /* Pearl */,
|
DAC77CAF148291A600BCF976 /* Pearl */,
|
||||||
@ -2592,16 +2608,6 @@
|
|||||||
path = ../../../External;
|
path = ../../../External;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
DACA22131705DE13002C6C22 /* UIFont+Replacement */ = {
|
|
||||||
isa = PBXGroup;
|
|
||||||
children = (
|
|
||||||
DACA22141705DE13002C6C22 /* UIFont+Replacement.m */,
|
|
||||||
DACA22151705DE13002C6C22 /* UIFont+Replacement.h */,
|
|
||||||
);
|
|
||||||
name = "UIFont+Replacement";
|
|
||||||
path = "FontReplacer/UIFont+Replacement";
|
|
||||||
sourceTree = "<group>";
|
|
||||||
};
|
|
||||||
DACA22B61705DE7D002C6C22 /* UbiquityStoreManager */ = {
|
DACA22B61705DE7D002C6C22 /* UbiquityStoreManager */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
@ -3045,6 +3051,10 @@
|
|||||||
DAFE460715039823003ABA7C /* Pearl-UIKit */ = {
|
DAFE460715039823003ABA7C /* Pearl-UIKit */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
|
DAEC85B118E3DD9A007FC0DF /* PearlUIView.m */,
|
||||||
|
DAEC85B218E3DD9A007FC0DF /* PearlUINavigationBar.m */,
|
||||||
|
DAEC85B318E3DD9A007FC0DF /* PearlUINavigationBar.h */,
|
||||||
|
DAEC85B418E3DD9A007FC0DF /* PearlUIView.h */,
|
||||||
DA2CA4E518D2AC10007798F8 /* NSLayoutConstraint+PearlUIKit.m */,
|
DA2CA4E518D2AC10007798F8 /* NSLayoutConstraint+PearlUIKit.m */,
|
||||||
DA2CA4E218D28866007798F8 /* NSLayoutConstraint+PearlUIKit.h */,
|
DA2CA4E218D28866007798F8 /* NSLayoutConstraint+PearlUIKit.h */,
|
||||||
93D39F7C9F47BF6387FBC5C3 /* PearlEMail.h */,
|
93D39F7C9F47BF6387FBC5C3 /* PearlEMail.h */,
|
||||||
@ -3094,6 +3104,10 @@
|
|||||||
93D3942A356B639724157982 /* PearlOverlay.h */,
|
93D3942A356B639724157982 /* PearlOverlay.h */,
|
||||||
93D3956915634581E737B38C /* PearlNavigationController.m */,
|
93D3956915634581E737B38C /* PearlNavigationController.m */,
|
||||||
93D398567FD02DB2647B8CF3 /* PearlNavigationController.h */,
|
93D398567FD02DB2647B8CF3 /* PearlNavigationController.h */,
|
||||||
|
93D390FB3110DCCE68E600DC /* UIScrollView+PearlAdjustInsets.m */,
|
||||||
|
93D39DE2CB351D4E3789462B /* UIScrollView+PearlAdjustInsets.h */,
|
||||||
|
93D39D8A953779B35403AF6E /* PearlUICollectionView.m */,
|
||||||
|
93D39B1D8177A86C5B9EDDE3 /* PearlUICollectionView.h */,
|
||||||
);
|
);
|
||||||
path = "Pearl-UIKit";
|
path = "Pearl-UIKit";
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@ -3118,14 +3132,6 @@
|
|||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
DA829E4F159847E0002417D3 /* Headers */ = {
|
|
||||||
isa = PBXHeadersBuildPhase;
|
|
||||||
buildActionMask = 2147483647;
|
|
||||||
files = (
|
|
||||||
DACA22171705DE13002C6C22 /* UIFont+Replacement.h in Headers */,
|
|
||||||
);
|
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
|
||||||
};
|
|
||||||
DAC6325B1486805C0075AEA5 /* Headers */ = {
|
DAC6325B1486805C0075AEA5 /* Headers */ = {
|
||||||
isa = PBXHeadersBuildPhase;
|
isa = PBXHeadersBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
@ -3207,6 +3213,7 @@
|
|||||||
DAEB933C18AA537D000490CC /* aes.h in Headers */,
|
DAEB933C18AA537D000490CC /* aes.h in Headers */,
|
||||||
DAEB937618AA537D000490CC /* ssl2.h in Headers */,
|
DAEB937618AA537D000490CC /* ssl2.h in Headers */,
|
||||||
DAFE4A3C15039824003ABA7C /* Pearl-UIKit-Dependencies.h in Headers */,
|
DAFE4A3C15039824003ABA7C /* Pearl-UIKit-Dependencies.h in Headers */,
|
||||||
|
DAEC85B818E3DD9A007FC0DF /* PearlUIView.h in Headers */,
|
||||||
DAEB935B18AA537D000490CC /* krb5_asn.h in Headers */,
|
DAEB935B18AA537D000490CC /* krb5_asn.h in Headers */,
|
||||||
DAEB935818AA537D000490CC /* evp.h in Headers */,
|
DAEB935818AA537D000490CC /* evp.h in Headers */,
|
||||||
DAEB934118AA537D000490CC /* blowfish.h in Headers */,
|
DAEB934118AA537D000490CC /* blowfish.h in Headers */,
|
||||||
@ -3275,6 +3282,7 @@
|
|||||||
DAEB935C18AA537D000490CC /* kssl.h in Headers */,
|
DAEB935C18AA537D000490CC /* kssl.h in Headers */,
|
||||||
DAEB933418AA537D000490CC /* crypto_scrypt.h in Headers */,
|
DAEB933418AA537D000490CC /* crypto_scrypt.h in Headers */,
|
||||||
DA3509FE15F101A500C14A8E /* PearlQueue.h in Headers */,
|
DA3509FE15F101A500C14A8E /* PearlQueue.h in Headers */,
|
||||||
|
DAEC85B718E3DD9A007FC0DF /* PearlUINavigationBar.h in Headers */,
|
||||||
DAEB934918AA537D000490CC /* conf_api.h in Headers */,
|
DAEB934918AA537D000490CC /* conf_api.h in Headers */,
|
||||||
93D396BA1C74C4A06FD86437 /* PearlOverlay.h in Headers */,
|
93D396BA1C74C4A06FD86437 /* PearlOverlay.h in Headers */,
|
||||||
DAEB937518AA537D000490CC /* ssl.h in Headers */,
|
DAEB937518AA537D000490CC /* ssl.h in Headers */,
|
||||||
@ -3282,6 +3290,8 @@
|
|||||||
93D39B842AB9A5D072810D76 /* NSError+PearlFullDescription.h in Headers */,
|
93D39B842AB9A5D072810D76 /* NSError+PearlFullDescription.h in Headers */,
|
||||||
DAEB936218AA537D000490CC /* obj_mac.h in Headers */,
|
DAEB936218AA537D000490CC /* obj_mac.h in Headers */,
|
||||||
DAEB934218AA537D000490CC /* bn.h in Headers */,
|
DAEB934218AA537D000490CC /* bn.h in Headers */,
|
||||||
|
93D39B76DD5AB108BA8928E8 /* UIScrollView+PearlAdjustInsets.h in Headers */,
|
||||||
|
93D3980046016EFD05B35BC5 /* PearlUICollectionView.h in Headers */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
@ -3324,6 +3334,7 @@
|
|||||||
DA5BFA40147E415C00F98B1E /* Sources */,
|
DA5BFA40147E415C00F98B1E /* Sources */,
|
||||||
DA5BFA41147E415C00F98B1E /* Frameworks */,
|
DA5BFA41147E415C00F98B1E /* Frameworks */,
|
||||||
DA5BFA42147E415C00F98B1E /* Resources */,
|
DA5BFA42147E415C00F98B1E /* Resources */,
|
||||||
|
DA67460818DE7B2C00DFE240 /* Run Script: Moarfonts */,
|
||||||
DA6556E314D55F3000841C99 /* Run Script: GIT version -> Info.plist */,
|
DA6556E314D55F3000841C99 /* Run Script: GIT version -> Info.plist */,
|
||||||
DAD3125D155288AA00A3F9ED /* Run Script: Crashlytics */,
|
DAD3125D155288AA00A3F9ED /* Run Script: Crashlytics */,
|
||||||
);
|
);
|
||||||
@ -3336,23 +3347,6 @@
|
|||||||
productReference = DA5BFA44147E415C00F98B1E /* MasterPassword.app */;
|
productReference = DA5BFA44147E415C00F98B1E /* MasterPassword.app */;
|
||||||
productType = "com.apple.product-type.application";
|
productType = "com.apple.product-type.application";
|
||||||
};
|
};
|
||||||
DA829E50159847E0002417D3 /* FontReplacer */ = {
|
|
||||||
isa = PBXNativeTarget;
|
|
||||||
buildConfigurationList = DA829E59159847E0002417D3 /* Build configuration list for PBXNativeTarget "FontReplacer" */;
|
|
||||||
buildPhases = (
|
|
||||||
DA829E4D159847E0002417D3 /* Sources */,
|
|
||||||
DA829E4E159847E0002417D3 /* Frameworks */,
|
|
||||||
DA829E4F159847E0002417D3 /* Headers */,
|
|
||||||
);
|
|
||||||
buildRules = (
|
|
||||||
);
|
|
||||||
dependencies = (
|
|
||||||
);
|
|
||||||
name = FontReplacer;
|
|
||||||
productName = FontReplacer;
|
|
||||||
productReference = DA829E51159847E0002417D3 /* libFontReplacer.a */;
|
|
||||||
productType = "com.apple.product-type.library.static";
|
|
||||||
};
|
|
||||||
DAC6325C1486805C0075AEA5 /* uicolor-utilities */ = {
|
DAC6325C1486805C0075AEA5 /* uicolor-utilities */ = {
|
||||||
isa = PBXNativeTarget;
|
isa = PBXNativeTarget;
|
||||||
buildConfigurationList = DAC632651486805C0075AEA5 /* Build configuration list for PBXNativeTarget "uicolor-utilities" */;
|
buildConfigurationList = DAC632651486805C0075AEA5 /* Build configuration list for PBXNativeTarget "uicolor-utilities" */;
|
||||||
@ -3597,7 +3591,6 @@
|
|||||||
DAC6326B148680650075AEA5 /* jrswizzle */,
|
DAC6326B148680650075AEA5 /* jrswizzle */,
|
||||||
DAD3127015528CD200A3F9ED /* Localytics */,
|
DAD3127015528CD200A3F9ED /* Localytics */,
|
||||||
DA4425CA1557BED40052177D /* UbiquityStoreManager */,
|
DA4425CA1557BED40052177D /* UbiquityStoreManager */,
|
||||||
DA829E50159847E0002417D3 /* FontReplacer */,
|
|
||||||
DAFC5654172C573B00CB5CC5 /* InAppSettingsKit */,
|
DAFC5654172C573B00CB5CC5 /* InAppSettingsKit */,
|
||||||
DAE1EF2817ED112600BC0086 /* DCIntrospect */,
|
DAE1EF2817ED112600BC0086 /* DCIntrospect */,
|
||||||
DADEF4211810D5530052CA3E /* LoveLyndir */,
|
DADEF4211810D5530052CA3E /* LoveLyndir */,
|
||||||
@ -3642,6 +3635,7 @@
|
|||||||
DABD391D1711E29700CF925C /* ui_spinner.png in Resources */,
|
DABD391D1711E29700CF925C /* ui_spinner.png in Resources */,
|
||||||
DABD391E1711E29700CF925C /* ui_spinner@2x.png in Resources */,
|
DABD391E1711E29700CF925C /* ui_spinner@2x.png in Resources */,
|
||||||
DA69540617D975D900BF294E /* icon_gears.png in Resources */,
|
DA69540617D975D900BF294E /* icon_gears.png in Resources */,
|
||||||
|
DA67460D18DE7F0C00DFE240 /* Exo2.0-Thin.otf in Resources */,
|
||||||
DABD39271711E29700CF925C /* ui_textfield.png in Resources */,
|
DABD39271711E29700CF925C /* ui_textfield.png in Resources */,
|
||||||
DABD39281711E29700CF925C /* ui_textfield@2x.png in Resources */,
|
DABD39281711E29700CF925C /* ui_textfield@2x.png in Resources */,
|
||||||
DABD39291711E29700CF925C /* ui_toolbar_container.png in Resources */,
|
DABD39291711E29700CF925C /* ui_toolbar_container.png in Resources */,
|
||||||
@ -3656,6 +3650,7 @@
|
|||||||
DABD393D1711E29700CF925C /* avatar-11@2x.png in Resources */,
|
DABD393D1711E29700CF925C /* avatar-11@2x.png in Resources */,
|
||||||
DABD393E1711E29700CF925C /* avatar-12.png in Resources */,
|
DABD393E1711E29700CF925C /* avatar-12.png in Resources */,
|
||||||
DABD393F1711E29700CF925C /* avatar-12@2x.png in Resources */,
|
DABD393F1711E29700CF925C /* avatar-12@2x.png in Resources */,
|
||||||
|
DA67461018DE7F0C00DFE240 /* Exo2.0-Bold.otf in Resources */,
|
||||||
DABD39401711E29700CF925C /* avatar-13.png in Resources */,
|
DABD39401711E29700CF925C /* avatar-13.png in Resources */,
|
||||||
DABD39411711E29700CF925C /* avatar-13@2x.png in Resources */,
|
DABD39411711E29700CF925C /* avatar-13@2x.png in Resources */,
|
||||||
DABD39421711E29700CF925C /* avatar-14.png in Resources */,
|
DABD39421711E29700CF925C /* avatar-14.png in Resources */,
|
||||||
@ -3670,9 +3665,11 @@
|
|||||||
DABD394A1711E29700CF925C /* avatar-18.png in Resources */,
|
DABD394A1711E29700CF925C /* avatar-18.png in Resources */,
|
||||||
DABD394B1711E29700CF925C /* avatar-18@2x.png in Resources */,
|
DABD394B1711E29700CF925C /* avatar-18@2x.png in Resources */,
|
||||||
DABD394C1711E29700CF925C /* avatar-1@2x.png in Resources */,
|
DABD394C1711E29700CF925C /* avatar-1@2x.png in Resources */,
|
||||||
|
DA67460E18DE7F0C00DFE240 /* Exo2.0-Regular.otf in Resources */,
|
||||||
DABD394D1711E29700CF925C /* avatar-2.png in Resources */,
|
DABD394D1711E29700CF925C /* avatar-2.png in Resources */,
|
||||||
DABD394E1711E29700CF925C /* avatar-2@2x.png in Resources */,
|
DABD394E1711E29700CF925C /* avatar-2@2x.png in Resources */,
|
||||||
DABD394F1711E29700CF925C /* avatar-3.png in Resources */,
|
DABD394F1711E29700CF925C /* avatar-3.png in Resources */,
|
||||||
|
DA67460F18DE7F0C00DFE240 /* Exo2.0-ExtraBold.otf in Resources */,
|
||||||
DABD39501711E29700CF925C /* avatar-3@2x.png in Resources */,
|
DABD39501711E29700CF925C /* avatar-3@2x.png in Resources */,
|
||||||
DABD39511711E29700CF925C /* avatar-4.png in Resources */,
|
DABD39511711E29700CF925C /* avatar-4.png in Resources */,
|
||||||
DABD39521711E29700CF925C /* avatar-4@2x.png in Resources */,
|
DABD39521711E29700CF925C /* avatar-4@2x.png in Resources */,
|
||||||
@ -3689,9 +3686,6 @@
|
|||||||
DABD395C1711E29700CF925C /* avatar-9@2x.png in Resources */,
|
DABD395C1711E29700CF925C /* avatar-9@2x.png in Resources */,
|
||||||
DABD395D1711E29700CF925C /* background.png in Resources */,
|
DABD395D1711E29700CF925C /* background.png in Resources */,
|
||||||
DABD395E1711E29700CF925C /* background@2x.png in Resources */,
|
DABD395E1711E29700CF925C /* background@2x.png in Resources */,
|
||||||
DABD39841711E29700CF925C /* Exo-Bold.otf in Resources */,
|
|
||||||
DABD39851711E29700CF925C /* Exo-ExtraBold.otf in Resources */,
|
|
||||||
DABD39861711E29700CF925C /* Exo-Regular.otf in Resources */,
|
|
||||||
DA945C8717E3F3FD0053236B /* Images.xcassets in Resources */,
|
DA945C8717E3F3FD0053236B /* Images.xcassets in Resources */,
|
||||||
DABD39871711E29700CF925C /* SourceCodePro-Black.otf in Resources */,
|
DABD39871711E29700CF925C /* SourceCodePro-Black.otf in Resources */,
|
||||||
DADEF4161810D2940052CA3E /* love-lyndir.button.red.png in Resources */,
|
DADEF4161810D2940052CA3E /* love-lyndir.button.red.png in Resources */,
|
||||||
@ -3794,6 +3788,21 @@
|
|||||||
shellPath = "/bin/bash -e";
|
shellPath = "/bin/bash -e";
|
||||||
shellScript = "PATH+=:/usr/libexec\n\naddPlistWithKey() {\n local key=$1 type=$2 value=$3 plist=${4:-\"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH\"}\n \n PlistBuddy -c \"Delete :'$key'\" \"$plist\" 2>/dev/null || true\n PlistBuddy -c \"Add :'$key' '$type' '$value'\" \"$plist\"\n}\nsetPlistWithKey() {\n local key=$1 value=$2 plist=${3:-\"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH\"}\n \n PlistBuddy -c \"Set :'$key' '$value'\" \"$plist\"\n}\ngetPlistWithKey() {\n local key=$1 plist=${2:-\"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH\"}\n \n PlistBuddy -c \"Print :'$key'\" \"$plist\"\n}\nsetSettingWithTitle() {\n local i title=$1 value=$2 plist=${3:-\"$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Settings.bundle/Root.plist\"}\n \n for (( i=0; 1; ++i )); do\n PlistBuddy -c \"Print :PreferenceSpecifiers:$i\" \"$plist\" &>/dev/null || break\n echo \"Checking preference specifier $i\"\n \n [[ $(PlistBuddy -c \"Print :PreferenceSpecifiers:$i:Title\" \"$plist\" 2>/dev/null) = $title ]] || continue\n \n echo \"Correct title, setting value.\"\n PlistBuddy -c \"Set :PreferenceSpecifiers:$i:DefaultValue $value\" \"$plist\"\n break\n done\n}\n\ndescription=$(git describe --always --dirty --long)\nversion=${description%-g*}\nIFS=- read major minor <<< \"$version\"\nprintf -v version '%s.%02d' \"$major\" \"$minor\"\nprintf -v commit '%09d' \"$((16#${description##*-g}))\"\n\naddPlistWithKey GITDescription string \"$description\"\nsetPlistWithKey CFBundleVersion \"${version//.}$commit\" # No separator between version and commit because I had already submitted a CFBundleVersion with a really high major. Cry.\nsetPlistWithKey CFBundleShortVersionString \"$version\"\n\nsetSettingWithTitle \"Build\" \"$commit\"\nsetSettingWithTitle \"Version\" \"$version\"\nsetSettingWithTitle \"Copyright\" \"$(getPlistWithKey NSHumanReadableCopyright)\"\n\nif [[ $DEPLOYMENT_LOCATION = YES ]]; then\n # This build is a release. Do some release checks.\n passed=1\n [[ $description != *-dirty ]] || \\\n { passed=0; echo >&2 \"ERROR: Cannot release a dirty version, first commit any changes.\"; }\n [[ $(PlistBuddy -c \"Print :'API Key'\" \"$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Crashlytics.plist\") ]] || \\\n { passed=0; echo >&2 \"ERROR: Cannot release: Crashlytics API key is missing.\"; }\n [[ $(PlistBuddy -c \"Print :'ClientID'\" \"$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Google+.plist\") ]] || \\\n { passed=0; echo >&2 \"ERROR: Cannot release: Google+ ClientID is missing.\"; }\n [[ $(PlistBuddy -c \"Print :'Key.distribution'\" \"$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Localytics.plist\") ]] || \\\n { passed=0; echo >&2 \"ERROR: Cannot release: Localytics distribution key is missing.\"; }\n (( passed )) || \\\n { echo >&2 \"Failed to pass release checks. Fix the above errors and re-try. Aborting.\"; exit 1; }\nfi";
|
shellScript = "PATH+=:/usr/libexec\n\naddPlistWithKey() {\n local key=$1 type=$2 value=$3 plist=${4:-\"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH\"}\n \n PlistBuddy -c \"Delete :'$key'\" \"$plist\" 2>/dev/null || true\n PlistBuddy -c \"Add :'$key' '$type' '$value'\" \"$plist\"\n}\nsetPlistWithKey() {\n local key=$1 value=$2 plist=${3:-\"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH\"}\n \n PlistBuddy -c \"Set :'$key' '$value'\" \"$plist\"\n}\ngetPlistWithKey() {\n local key=$1 plist=${2:-\"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH\"}\n \n PlistBuddy -c \"Print :'$key'\" \"$plist\"\n}\nsetSettingWithTitle() {\n local i title=$1 value=$2 plist=${3:-\"$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Settings.bundle/Root.plist\"}\n \n for (( i=0; 1; ++i )); do\n PlistBuddy -c \"Print :PreferenceSpecifiers:$i\" \"$plist\" &>/dev/null || break\n echo \"Checking preference specifier $i\"\n \n [[ $(PlistBuddy -c \"Print :PreferenceSpecifiers:$i:Title\" \"$plist\" 2>/dev/null) = $title ]] || continue\n \n echo \"Correct title, setting value.\"\n PlistBuddy -c \"Set :PreferenceSpecifiers:$i:DefaultValue $value\" \"$plist\"\n break\n done\n}\n\ndescription=$(git describe --always --dirty --long)\nversion=${description%-g*}\nIFS=- read major minor <<< \"$version\"\nprintf -v version '%s.%02d' \"$major\" \"$minor\"\nprintf -v commit '%09d' \"$((16#${description##*-g}))\"\n\naddPlistWithKey GITDescription string \"$description\"\nsetPlistWithKey CFBundleVersion \"${version//.}$commit\" # No separator between version and commit because I had already submitted a CFBundleVersion with a really high major. Cry.\nsetPlistWithKey CFBundleShortVersionString \"$version\"\n\nsetSettingWithTitle \"Build\" \"$commit\"\nsetSettingWithTitle \"Version\" \"$version\"\nsetSettingWithTitle \"Copyright\" \"$(getPlistWithKey NSHumanReadableCopyright)\"\n\nif [[ $DEPLOYMENT_LOCATION = YES ]]; then\n # This build is a release. Do some release checks.\n passed=1\n [[ $description != *-dirty ]] || \\\n { passed=0; echo >&2 \"ERROR: Cannot release a dirty version, first commit any changes.\"; }\n [[ $(PlistBuddy -c \"Print :'API Key'\" \"$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Crashlytics.plist\") ]] || \\\n { passed=0; echo >&2 \"ERROR: Cannot release: Crashlytics API key is missing.\"; }\n [[ $(PlistBuddy -c \"Print :'ClientID'\" \"$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Google+.plist\") ]] || \\\n { passed=0; echo >&2 \"ERROR: Cannot release: Google+ ClientID is missing.\"; }\n [[ $(PlistBuddy -c \"Print :'Key.distribution'\" \"$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Localytics.plist\") ]] || \\\n { passed=0; echo >&2 \"ERROR: Cannot release: Localytics distribution key is missing.\"; }\n (( passed )) || \\\n { echo >&2 \"Failed to pass release checks. Fix the above errors and re-try. Aborting.\"; exit 1; }\nfi";
|
||||||
};
|
};
|
||||||
|
DA67460818DE7B2C00DFE240 /* Run Script: Moarfonts */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
);
|
||||||
|
name = "Run Script: Moarfonts";
|
||||||
|
outputPaths = (
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = "/bin/bash -e";
|
||||||
|
shellScript = "[[ -x /usr/local/bin/moarfonts ]] || {\n echo >&2 \"moarfonts not installed, embedded fonts will not show up in IB.\"\n exit\n}\n\nfind \"${BUILT_PRODUCTS_DIR}/${FULL_PRODUCT_NAME}\" -name '*.otf' -exec /usr/local/bin/moarfonts install {} +";
|
||||||
|
showEnvVarsInLog = 0;
|
||||||
|
};
|
||||||
DAD3125D155288AA00A3F9ED /* Run Script: Crashlytics */ = {
|
DAD3125D155288AA00A3F9ED /* Run Script: Crashlytics */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
@ -3858,19 +3867,14 @@
|
|||||||
93D3957237D303DE2D38C267 /* MPAvatarCell.m in Sources */,
|
93D3957237D303DE2D38C267 /* MPAvatarCell.m in Sources */,
|
||||||
93D39B8F90F58A5D158DDBA3 /* MPPasswordsViewController.m in Sources */,
|
93D39B8F90F58A5D158DDBA3 /* MPPasswordsViewController.m in Sources */,
|
||||||
93D3954FCE045A3CC7E804B7 /* MPUsersViewController.m in Sources */,
|
93D3954FCE045A3CC7E804B7 /* MPUsersViewController.m in Sources */,
|
||||||
93D3959643EACF286D0152BA /* PearlUINavigationBar.m in Sources */,
|
93D39CB5E2EC1078E898F46A /* MPPasswordLargeCell.m in Sources */,
|
||||||
93D393543ACC701C018C74DA /* PearlUIView.m in Sources */,
|
93D39FA97F4C3F69A75D5A03 /* MPPasswordLargeGeneratedCell.m in Sources */,
|
||||||
93D39CB5E2EC1078E898F46A /* MPPasswordCell.m in Sources */,
|
93D394F6D3F6E2553AA0D684 /* MPPasswordLargeStoredCell.m in Sources */,
|
||||||
93D39FA97F4C3F69A75D5A03 /* MPPasswordGeneratedCell.m in Sources */,
|
93D39392DEDA376F93C6C718 /* MPCell.m in Sources */,
|
||||||
93D394F6D3F6E2553AA0D684 /* MPPasswordStoredCell.m in Sources */,
|
93D399278165FD6D950F0025 /* MPPasswordTypesCell.m in Sources */,
|
||||||
);
|
93D39A5FF670957C0AF8298D /* MPPasswordCell.m in Sources */,
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
93D39EDD960C381D64E4DCDD /* MPPasswordSmallCell.m in Sources */,
|
||||||
};
|
93D393BA1B8402D08DB40231 /* MPPasswordElementCell.m in Sources */,
|
||||||
DA829E4D159847E0002417D3 /* Sources */ = {
|
|
||||||
isa = PBXSourcesBuildPhase;
|
|
||||||
buildActionMask = 2147483647;
|
|
||||||
files = (
|
|
||||||
DACA22161705DE13002C6C22 /* UIFont+Replacement.m in Sources */,
|
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
@ -3924,6 +3928,7 @@
|
|||||||
DAFE4A5115039824003ABA7C /* PearlUIDebug.m in Sources */,
|
DAFE4A5115039824003ABA7C /* PearlUIDebug.m in Sources */,
|
||||||
DAFE4A5315039824003ABA7C /* PearlUIUtils.m in Sources */,
|
DAFE4A5315039824003ABA7C /* PearlUIUtils.m in Sources */,
|
||||||
DAFE4A5515039824003ABA7C /* PearlValidatingTextField.m in Sources */,
|
DAFE4A5515039824003ABA7C /* PearlValidatingTextField.m in Sources */,
|
||||||
|
DAEC85B618E3DD9A007FC0DF /* PearlUINavigationBar.m in Sources */,
|
||||||
DAFE4A5715039824003ABA7C /* PearlWebViewController.m in Sources */,
|
DAFE4A5715039824003ABA7C /* PearlWebViewController.m in Sources */,
|
||||||
DAFE4A5915039824003ABA7C /* UIImage+PearlScaling.m in Sources */,
|
DAFE4A5915039824003ABA7C /* UIImage+PearlScaling.m in Sources */,
|
||||||
DAFE4A62150399FF003ABA7C /* PearlAppDelegate.m in Sources */,
|
DAFE4A62150399FF003ABA7C /* PearlAppDelegate.m in Sources */,
|
||||||
@ -3934,6 +3939,7 @@
|
|||||||
DA30E9D815723E6900A68B4C /* PearlLazy.m in Sources */,
|
DA30E9D815723E6900A68B4C /* PearlLazy.m in Sources */,
|
||||||
DAFE4A63150399FF003ABA82 /* UIControl+PearlBlocks.m in Sources */,
|
DAFE4A63150399FF003ABA82 /* UIControl+PearlBlocks.m in Sources */,
|
||||||
DAFE4A63150399FF003ABA86 /* NSObject+PearlKVO.m in Sources */,
|
DAFE4A63150399FF003ABA86 /* NSObject+PearlKVO.m in Sources */,
|
||||||
|
DAEC85B518E3DD9A007FC0DF /* PearlUIView.m in Sources */,
|
||||||
DA2CA4DD18D28859007798F8 /* NSArray+Pearl.m in Sources */,
|
DA2CA4DD18D28859007798F8 /* NSArray+Pearl.m in Sources */,
|
||||||
DAFE4A63150399FF003ABA8A /* UIControl+PearlSelect.m in Sources */,
|
DAFE4A63150399FF003ABA8A /* UIControl+PearlSelect.m in Sources */,
|
||||||
DAFE4A63150399FF003ABA8E /* UIScrollView+PearlFlashingIndicators.m in Sources */,
|
DAFE4A63150399FF003ABA8E /* UIScrollView+PearlFlashingIndicators.m in Sources */,
|
||||||
@ -3947,6 +3953,8 @@
|
|||||||
93D396AA30690B256F30378A /* PearlNavigationController.m in Sources */,
|
93D396AA30690B256F30378A /* PearlNavigationController.m in Sources */,
|
||||||
93D397952F5635C793C24DF1 /* NSError+PearlFullDescription.m in Sources */,
|
93D397952F5635C793C24DF1 /* NSError+PearlFullDescription.m in Sources */,
|
||||||
DA2CA4DF18D28859007798F8 /* NSTimer+PearlBlock.m in Sources */,
|
DA2CA4DF18D28859007798F8 /* NSTimer+PearlBlock.m in Sources */,
|
||||||
|
93D3954E96236384AFA00453 /* UIScrollView+PearlAdjustInsets.m in Sources */,
|
||||||
|
93D39A8EA1C49CE43B63F47B /* PearlUICollectionView.m in Sources */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
@ -4244,6 +4252,7 @@
|
|||||||
EXCLUDED_SOURCE_FILE_NAMES = libTestFlight.a;
|
EXCLUDED_SOURCE_FILE_NAMES = libTestFlight.a;
|
||||||
GCC_PREFIX_HEADER = "MasterPassword-Prefix.pch";
|
GCC_PREFIX_HEADER = "MasterPassword-Prefix.pch";
|
||||||
INFOPLIST_FILE = "MasterPassword-Info.plist";
|
INFOPLIST_FILE = "MasterPassword-Info.plist";
|
||||||
|
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"-framework",
|
"-framework",
|
||||||
@ -4269,6 +4278,7 @@
|
|||||||
EXCLUDED_SOURCE_FILE_NAMES = "";
|
EXCLUDED_SOURCE_FILE_NAMES = "";
|
||||||
GCC_PREFIX_HEADER = "MasterPassword-Prefix.pch";
|
GCC_PREFIX_HEADER = "MasterPassword-Prefix.pch";
|
||||||
INFOPLIST_FILE = "MasterPassword-Info.plist";
|
INFOPLIST_FILE = "MasterPassword-Info.plist";
|
||||||
|
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
|
||||||
PROVISIONING_PROFILE = "";
|
PROVISIONING_PROFILE = "";
|
||||||
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "4CBD21E7-DB60-4F7F-80F8-98DFA83D2CE0";
|
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "4CBD21E7-DB60-4F7F-80F8-98DFA83D2CE0";
|
||||||
SKIP_INSTALL = NO;
|
SKIP_INSTALL = NO;
|
||||||
@ -4277,27 +4287,6 @@
|
|||||||
};
|
};
|
||||||
name = "AdHoc-iOS";
|
name = "AdHoc-iOS";
|
||||||
};
|
};
|
||||||
DA829E5A159847E0002417D3 /* Debug-iOS */ = {
|
|
||||||
isa = XCBuildConfiguration;
|
|
||||||
buildSettings = {
|
|
||||||
GCC_WARN_INHIBIT_ALL_WARNINGS = YES;
|
|
||||||
};
|
|
||||||
name = "Debug-iOS";
|
|
||||||
};
|
|
||||||
DA829E5B159847E0002417D3 /* AdHoc-iOS */ = {
|
|
||||||
isa = XCBuildConfiguration;
|
|
||||||
buildSettings = {
|
|
||||||
GCC_WARN_INHIBIT_ALL_WARNINGS = YES;
|
|
||||||
};
|
|
||||||
name = "AdHoc-iOS";
|
|
||||||
};
|
|
||||||
DA829E5C159847E0002417D3 /* AppStore-iOS */ = {
|
|
||||||
isa = XCBuildConfiguration;
|
|
||||||
buildSettings = {
|
|
||||||
GCC_WARN_INHIBIT_ALL_WARNINGS = YES;
|
|
||||||
};
|
|
||||||
name = "AppStore-iOS";
|
|
||||||
};
|
|
||||||
DA95D60914DF3F3B008D1B94 /* AppStore-iOS */ = {
|
DA95D60914DF3F3B008D1B94 /* AppStore-iOS */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
@ -4405,6 +4394,7 @@
|
|||||||
);
|
);
|
||||||
GCC_PREFIX_HEADER = "MasterPassword-Prefix.pch";
|
GCC_PREFIX_HEADER = "MasterPassword-Prefix.pch";
|
||||||
INFOPLIST_FILE = "MasterPassword-Info.plist";
|
INFOPLIST_FILE = "MasterPassword-Info.plist";
|
||||||
|
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
|
||||||
PROVISIONING_PROFILE = "";
|
PROVISIONING_PROFILE = "";
|
||||||
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "6C6B84DD-9D8F-4321-BD77-5F737DBE1778";
|
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "6C6B84DD-9D8F-4321-BD77-5F737DBE1778";
|
||||||
SKIP_INSTALL = NO;
|
SKIP_INSTALL = NO;
|
||||||
@ -4677,16 +4667,6 @@
|
|||||||
defaultConfigurationIsVisible = 0;
|
defaultConfigurationIsVisible = 0;
|
||||||
defaultConfigurationName = "AdHoc-iOS";
|
defaultConfigurationName = "AdHoc-iOS";
|
||||||
};
|
};
|
||||||
DA829E59159847E0002417D3 /* Build configuration list for PBXNativeTarget "FontReplacer" */ = {
|
|
||||||
isa = XCConfigurationList;
|
|
||||||
buildConfigurations = (
|
|
||||||
DA829E5A159847E0002417D3 /* Debug-iOS */,
|
|
||||||
DA829E5B159847E0002417D3 /* AdHoc-iOS */,
|
|
||||||
DA829E5C159847E0002417D3 /* AppStore-iOS */,
|
|
||||||
);
|
|
||||||
defaultConfigurationIsVisible = 0;
|
|
||||||
defaultConfigurationName = "AdHoc-iOS";
|
|
||||||
};
|
|
||||||
DAC632651486805C0075AEA5 /* Build configuration list for PBXNativeTarget "uicolor-utilities" */ = {
|
DAC632651486805C0075AEA5 /* Build configuration list for PBXNativeTarget "uicolor-utilities" */ = {
|
||||||
isa = XCConfigurationList;
|
isa = XCConfigurationList;
|
||||||
buildConfigurations = (
|
buildConfigurations = (
|
||||||
|
@ -1,43 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
|
||||||
*
|
|
||||||
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
|
||||||
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
||||||
*
|
|
||||||
* @author Maarten Billemont <lhunath@lyndir.com>
|
|
||||||
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
||||||
*/
|
|
||||||
|
|
||||||
//
|
|
||||||
// PearlUINavigationBar.h
|
|
||||||
// PearlUINavigationBar
|
|
||||||
//
|
|
||||||
// Created by lhunath on 2014-03-17.
|
|
||||||
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
|
||||||
//
|
|
||||||
|
|
||||||
#import "PearlUINavigationBar.h"
|
|
||||||
|
|
||||||
@implementation PearlUINavigationBar
|
|
||||||
|
|
||||||
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
|
|
||||||
|
|
||||||
UIView *hitView = [super hitTest:point withEvent:event];
|
|
||||||
if (self.ignoreTouches && hitView == self)
|
|
||||||
return nil;
|
|
||||||
|
|
||||||
return hitView;
|
|
||||||
}
|
|
||||||
|
|
||||||
- (void)setInvisible:(BOOL)invisible {
|
|
||||||
|
|
||||||
_invisible = invisible;
|
|
||||||
|
|
||||||
if (invisible) {
|
|
||||||
self.translucent = YES;
|
|
||||||
self.shadowImage = [UIImage new];
|
|
||||||
[self setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
|
@ -1,32 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
|
||||||
*
|
|
||||||
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
|
||||||
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
||||||
*
|
|
||||||
* @author Maarten Billemont <lhunath@lyndir.com>
|
|
||||||
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
||||||
*/
|
|
||||||
|
|
||||||
//
|
|
||||||
// PearlUIView.h
|
|
||||||
// PearlUIView
|
|
||||||
//
|
|
||||||
// Created by lhunath on 2014-03-17.
|
|
||||||
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
|
||||||
//
|
|
||||||
|
|
||||||
#import "PearlUIView.h"
|
|
||||||
|
|
||||||
@implementation PearlUIView
|
|
||||||
|
|
||||||
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
|
|
||||||
|
|
||||||
UIView *hitView = [super hitTest:point withEvent:event];
|
|
||||||
if (self.ignoreTouches && hitView == self)
|
|
||||||
return nil;
|
|
||||||
|
|
||||||
return hitView;
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="5053" systemVersion="13C64" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" initialViewController="Q1S-vU-GGO">
|
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="5053" systemVersion="13C64" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" initialViewController="Q1S-vU-GGO">
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<deployment defaultVersion="1536" identifier="iOS"/>
|
<deployment defaultVersion="1792" identifier="iOS"/>
|
||||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="3733"/>
|
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="3733"/>
|
||||||
<capability name="Alignment constraints with different attributes" minToolsVersion="5.1"/>
|
<capability name="Alignment constraints with different attributes" minToolsVersion="5.1"/>
|
||||||
<capability name="Aspect ratio constraints" minToolsVersion="5.1"/>
|
<capability name="Aspect ratio constraints" minToolsVersion="5.1"/>
|
||||||
@ -50,11 +50,11 @@
|
|||||||
<autoresizingMask key="autoresizingMask"/>
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
<subviews>
|
<subviews>
|
||||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="ui_spinner.png" translatesAutoresizingMaskIntoConstraints="NO" id="y4j-ds-HM7" userLabel="Spinner">
|
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="ui_spinner.png" translatesAutoresizingMaskIntoConstraints="NO" id="y4j-ds-HM7" userLabel="Spinner">
|
||||||
<rect key="frame" x="25" y="162" width="110" height="110"/>
|
<rect key="frame" x="25" y="154" width="110" height="110"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
</imageView>
|
</imageView>
|
||||||
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="avatar-0.png" translatesAutoresizingMaskIntoConstraints="NO" id="Aca-he-7Qi" userLabel="Avatar">
|
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="avatar-0.png" translatesAutoresizingMaskIntoConstraints="NO" id="Aca-he-7Qi" userLabel="Avatar">
|
||||||
<rect key="frame" x="25" y="162" width="110" height="110"/>
|
<rect key="frame" x="25" y="154" width="110" height="110"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
<color key="tintColor" red="0.47450980390000003" green="0.86666666670000003" blue="0.98431372549999996" alpha="1" colorSpace="calibratedRGB"/>
|
<color key="tintColor" red="0.47450980390000003" green="0.86666666670000003" blue="0.98431372549999996" alpha="1" colorSpace="calibratedRGB"/>
|
||||||
<constraints>
|
<constraints>
|
||||||
@ -63,13 +63,13 @@
|
|||||||
</constraints>
|
</constraints>
|
||||||
</imageView>
|
</imageView>
|
||||||
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="0Sa-Vg-EEI" userLabel="Name Backdrop">
|
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="0Sa-Vg-EEI" userLabel="Name Backdrop">
|
||||||
<rect key="frame" x="20" y="209" width="120" height="17"/>
|
<rect key="frame" x="16" y="201" width="129" height="16"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
<subviews>
|
<subviews>
|
||||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Maarten Billemont" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsLetterSpacingToFitWidth="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cLT-s0-4SQ" userLabel="Name Field">
|
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Maarten Billemont" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsLetterSpacingToFitWidth="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cLT-s0-4SQ" userLabel="Name Field">
|
||||||
<rect key="frame" x="5" y="0.0" width="110" height="17"/>
|
<rect key="frame" x="5" y="0.0" width="119" height="16"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
<fontDescription key="fontDescription" name="Futura-CondensedExtraBold" family="Futura" pointSize="13"/>
|
<fontDescription key="fontDescription" name="Exo2.0-ExtraBold" family="Exo 2.0" pointSize="13"/>
|
||||||
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
<nil key="highlightedColor"/>
|
<nil key="highlightedColor"/>
|
||||||
</label>
|
</label>
|
||||||
@ -90,7 +90,7 @@
|
|||||||
<constraint firstAttribute="centerX" secondItem="0Sa-Vg-EEI" secondAttribute="centerX" id="EYH-CQ-6TX"/>
|
<constraint firstAttribute="centerX" secondItem="0Sa-Vg-EEI" secondAttribute="centerX" id="EYH-CQ-6TX"/>
|
||||||
<constraint firstItem="0Sa-Vg-EEI" firstAttribute="top" secondItem="Aca-he-7Qi" secondAttribute="bottom" priority="500" constant="8" symbolic="YES" id="F67-h9-FDi"/>
|
<constraint firstItem="0Sa-Vg-EEI" firstAttribute="top" secondItem="Aca-he-7Qi" secondAttribute="bottom" priority="500" constant="8" symbolic="YES" id="F67-h9-FDi"/>
|
||||||
<constraint firstItem="Aca-he-7Qi" firstAttribute="centerY" secondItem="0Sa-Vg-EEI" secondAttribute="centerY" priority="750" id="Ht7-Iz-cAW"/>
|
<constraint firstItem="Aca-he-7Qi" firstAttribute="centerY" secondItem="0Sa-Vg-EEI" secondAttribute="centerY" priority="750" id="Ht7-Iz-cAW"/>
|
||||||
<constraint firstAttribute="bottom" secondItem="Aca-he-7Qi" secondAttribute="bottom" priority="750" constant="296" id="J75-xU-Pvo"/>
|
<constraint firstAttribute="bottom" secondItem="Aca-he-7Qi" secondAttribute="bottom" priority="750" constant="304" id="J75-xU-Pvo"/>
|
||||||
<constraint firstAttribute="centerX" secondItem="Aca-he-7Qi" secondAttribute="centerX" id="K7L-KI-BH9"/>
|
<constraint firstAttribute="centerX" secondItem="Aca-he-7Qi" secondAttribute="centerX" id="K7L-KI-BH9"/>
|
||||||
<constraint firstItem="y4j-ds-HM7" firstAttribute="width" secondItem="Aca-he-7Qi" secondAttribute="width" id="MeH-cy-veM"/>
|
<constraint firstItem="y4j-ds-HM7" firstAttribute="width" secondItem="Aca-he-7Qi" secondAttribute="width" id="MeH-cy-veM"/>
|
||||||
<constraint firstAttribute="top" secondItem="Aca-he-7Qi" secondAttribute="centerY" priority="250" constant="-22" id="TPa-AD-BhA"/>
|
<constraint firstAttribute="top" secondItem="Aca-he-7Qi" secondAttribute="centerY" priority="250" constant="-22" id="TPa-AD-BhA"/>
|
||||||
@ -123,7 +123,7 @@
|
|||||||
<outlet property="delegate" destination="S8q-YF-Kt9" id="det-Eh-phM"/>
|
<outlet property="delegate" destination="S8q-YF-Kt9" id="det-Eh-phM"/>
|
||||||
</connections>
|
</connections>
|
||||||
</collectionView>
|
</collectionView>
|
||||||
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="qp1-nX-o4i" userLabel="Entry">
|
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="qp1-nX-o4i" userLabel="Entry" customClass="PearlUIView">
|
||||||
<rect key="frame" x="20" y="280" width="280" height="63"/>
|
<rect key="frame" x="20" y="280" width="280" height="63"/>
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
||||||
<subviews>
|
<subviews>
|
||||||
@ -164,8 +164,11 @@
|
|||||||
<constraint firstAttribute="trailing" secondItem="UfK-na-vOU" secondAttribute="trailing" id="k3M-Oh-kM1"/>
|
<constraint firstAttribute="trailing" secondItem="UfK-na-vOU" secondAttribute="trailing" id="k3M-Oh-kM1"/>
|
||||||
<constraint firstItem="z3Z-AB-fG2" firstAttribute="trailing" secondItem="UfK-na-vOU" secondAttribute="trailing" constant="-10" id="nEd-y0-Fzk"/>
|
<constraint firstItem="z3Z-AB-fG2" firstAttribute="trailing" secondItem="UfK-na-vOU" secondAttribute="trailing" constant="-10" id="nEd-y0-Fzk"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
|
<userDefinedRuntimeAttributes>
|
||||||
|
<userDefinedRuntimeAttribute type="boolean" keyPath="ignoreTouches" value="YES"/>
|
||||||
|
</userDefinedRuntimeAttributes>
|
||||||
</view>
|
</view>
|
||||||
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="XEP-O3-ayG" userLabel="Footer">
|
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="XEP-O3-ayG" userLabel="Footer" customClass="PearlUIView">
|
||||||
<rect key="frame" x="0.0" y="455" width="320" height="113"/>
|
<rect key="frame" x="0.0" y="455" width="320" height="113"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
<subviews>
|
<subviews>
|
||||||
@ -224,6 +227,9 @@
|
|||||||
<constraint firstAttribute="trailing" secondItem="N9g-Kk-yjc" secondAttribute="trailing" constant="20" symbolic="YES" id="mi6-gX-BNO"/>
|
<constraint firstAttribute="trailing" secondItem="N9g-Kk-yjc" secondAttribute="trailing" constant="20" symbolic="YES" id="mi6-gX-BNO"/>
|
||||||
<constraint firstAttribute="bottom" secondItem="N9g-Kk-yjc" secondAttribute="bottom" constant="20" symbolic="YES" id="ybQ-hS-EaU"/>
|
<constraint firstAttribute="bottom" secondItem="N9g-Kk-yjc" secondAttribute="bottom" constant="20" symbolic="YES" id="ybQ-hS-EaU"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
|
<userDefinedRuntimeAttributes>
|
||||||
|
<userDefinedRuntimeAttribute type="boolean" keyPath="ignoreTouches" value="YES"/>
|
||||||
|
</userDefinedRuntimeAttributes>
|
||||||
</view>
|
</view>
|
||||||
</subviews>
|
</subviews>
|
||||||
<constraints>
|
<constraints>
|
||||||
@ -241,20 +247,13 @@
|
|||||||
<constraint firstAttribute="trailing" secondItem="XEP-O3-ayG" secondAttribute="trailing" id="raD-hD-OYt"/>
|
<constraint firstAttribute="trailing" secondItem="XEP-O3-ayG" secondAttribute="trailing" id="raD-hD-OYt"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
</view>
|
</view>
|
||||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="keyboard-dark.png" translatesAutoresizingMaskIntoConstraints="NO" id="WKq-vl-7Xv" userLabel="Keyboard">
|
|
||||||
<rect key="frame" x="0.0" y="352" width="320" height="216"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
||||||
</imageView>
|
|
||||||
</subviews>
|
</subviews>
|
||||||
<color key="backgroundColor" cocoaTouchSystemColor="viewFlipsideBackgroundColor"/>
|
<color key="backgroundColor" cocoaTouchSystemColor="viewFlipsideBackgroundColor"/>
|
||||||
<constraints>
|
<constraints>
|
||||||
<constraint firstItem="rWM-08-aab" firstAttribute="leading" secondItem="DOr-Xu-P9q" secondAttribute="leading" id="Il8-kg-Dra"/>
|
<constraint firstItem="rWM-08-aab" firstAttribute="leading" secondItem="DOr-Xu-P9q" secondAttribute="leading" id="Il8-kg-Dra"/>
|
||||||
<constraint firstItem="VGz-R0-vMD" firstAttribute="top" secondItem="WKq-vl-7Xv" secondAttribute="bottom" id="Jrv-np-2jJ"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="rWM-08-aab" secondAttribute="trailing" id="UPP-1n-zIe"/>
|
<constraint firstAttribute="trailing" secondItem="rWM-08-aab" secondAttribute="trailing" id="UPP-1n-zIe"/>
|
||||||
<constraint firstItem="WKq-vl-7Xv" firstAttribute="leading" secondItem="DOr-Xu-P9q" secondAttribute="leading" id="fGF-fl-Mfx"/>
|
|
||||||
<constraint firstItem="VGz-R0-vMD" firstAttribute="top" secondItem="rWM-08-aab" secondAttribute="bottom" id="fcH-lm-76a"/>
|
<constraint firstItem="VGz-R0-vMD" firstAttribute="top" secondItem="rWM-08-aab" secondAttribute="bottom" id="fcH-lm-76a"/>
|
||||||
<constraint firstItem="L6J-pd-gcp" firstAttribute="top" secondItem="zp4-4O-wZI" secondAttribute="bottom" id="kNw-eU-W01"/>
|
<constraint firstItem="L6J-pd-gcp" firstAttribute="top" secondItem="zp4-4O-wZI" secondAttribute="bottom" id="kNw-eU-W01"/>
|
||||||
<constraint firstAttribute="trailing" secondItem="WKq-vl-7Xv" secondAttribute="trailing" id="o32-jm-izi"/>
|
|
||||||
<constraint firstAttribute="top" secondItem="rWM-08-aab" secondAttribute="top" id="xBe-1Q-mz2"/>
|
<constraint firstAttribute="top" secondItem="rWM-08-aab" secondAttribute="top" id="xBe-1Q-mz2"/>
|
||||||
<constraint firstItem="zp4-4O-wZI" firstAttribute="bottom" secondItem="790-G2-I8g" secondAttribute="top" priority="500" id="y7N-re-Hvm"/>
|
<constraint firstItem="zp4-4O-wZI" firstAttribute="bottom" secondItem="790-G2-I8g" secondAttribute="top" priority="500" id="y7N-re-Hvm"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
@ -404,36 +403,61 @@
|
|||||||
<outlet property="delegate" destination="nkY-z6-8jd" id="Mfn-aT-vK7"/>
|
<outlet property="delegate" destination="nkY-z6-8jd" id="Mfn-aT-vK7"/>
|
||||||
</connections>
|
</connections>
|
||||||
</searchBar>
|
</searchBar>
|
||||||
<collectionView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" minimumZoomScale="0.0" maximumZoomScale="0.0" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="aXw-tn-8Sj" userLabel="Password Collection">
|
<collectionView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" minimumZoomScale="0.0" maximumZoomScale="0.0" keyboardDismissMode="onDrag" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="aXw-tn-8Sj" userLabel="Password Collection">
|
||||||
<rect key="frame" x="0.0" y="44" width="320" height="460"/>
|
<rect key="frame" x="0.0" y="44" width="320" height="460"/>
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
||||||
<collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="10" minimumInteritemSpacing="10" id="Mv1-29-TWx">
|
<collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="10" minimumInteritemSpacing="10" id="Mv1-29-TWx">
|
||||||
<size key="itemSize" width="304" height="100"/>
|
<size key="itemSize" width="300" height="100"/>
|
||||||
|
<size key="headerReferenceSize" width="0.0" height="0.0"/>
|
||||||
|
<size key="footerReferenceSize" width="0.0" height="0.0"/>
|
||||||
|
<inset key="sectionInset" minX="10" minY="0.0" maxX="10" maxY="0.0"/>
|
||||||
|
</collectionViewFlowLayout>
|
||||||
|
<cells>
|
||||||
|
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="MPPasswordTypesCell" id="vMF-fk-FYX" userLabel="Large" customClass="MPPasswordTypesCell">
|
||||||
|
<rect key="frame" x="10" y="0.0" width="300" height="100"/>
|
||||||
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
|
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
||||||
|
<rect key="frame" x="0.0" y="0.0" width="300" height="100"/>
|
||||||
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
|
<subviews>
|
||||||
|
<collectionView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" minimumZoomScale="0.0" maximumZoomScale="0.0" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="7vV-gu-BNS" userLabel="Type Collection">
|
||||||
|
<rect key="frame" x="0.0" y="0.0" width="300" height="100"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
|
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
||||||
|
<collectionViewFlowLayout key="collectionViewLayout" scrollDirection="horizontal" minimumLineSpacing="10" minimumInteritemSpacing="10" id="ap6-LM-04C">
|
||||||
|
<size key="itemSize" width="300" height="100"/>
|
||||||
<size key="headerReferenceSize" width="0.0" height="0.0"/>
|
<size key="headerReferenceSize" width="0.0" height="0.0"/>
|
||||||
<size key="footerReferenceSize" width="0.0" height="0.0"/>
|
<size key="footerReferenceSize" width="0.0" height="0.0"/>
|
||||||
<inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
|
<inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
|
||||||
</collectionViewFlowLayout>
|
</collectionViewFlowLayout>
|
||||||
<cells>
|
<cells>
|
||||||
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="MPPasswordGeneratedCell" id="302-fI-maQ" customClass="MPPasswordGeneratedCell">
|
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="MPPasswordLargeStoredCell" id="GAB-fT-EFv" userLabel="Stored" customClass="MPPasswordLargeStoredCell">
|
||||||
<rect key="frame" x="8" y="0.0" width="304" height="100"/>
|
<rect key="frame" x="0.0" y="0.0" width="300" height="100"/>
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
||||||
<rect key="frame" x="0.0" y="0.0" width="304" height="100"/>
|
<rect key="frame" x="0.0" y="0.0" width="300" height="100"/>
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
<subviews>
|
<subviews>
|
||||||
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="SadwGafy7^Sidu" textAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="q75-Uz-86O">
|
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.029999999999999999" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Personal Password" lineBreakMode="clip" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AAG-mH-nNg" userLabel="Type">
|
||||||
<rect key="frame" x="8" y="20" width="288" height="37"/>
|
<rect key="frame" x="-10" y="19" width="763" height="101"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
|
<fontDescription key="fontDescription" name="Exo2.0-Bold" family="Exo 2.0" pointSize="84"/>
|
||||||
|
<color key="textColor" cocoaTouchSystemColor="lightTextColor"/>
|
||||||
|
<nil key="highlightedColor"/>
|
||||||
|
</label>
|
||||||
|
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="SadwGafy7^Sidu" textAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="ig3-Gj-BQO" userLabel="Content">
|
||||||
|
<rect key="frame" x="8" y="20" width="284" height="31"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
<color key="textColor" red="0.40000000600000002" green="0.80000001190000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
<color key="textColor" red="0.40000000600000002" green="0.80000001190000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
||||||
<fontDescription key="fontDescription" name="AmericanTypewriter-Bold" family="American Typewriter" pointSize="30"/>
|
<fontDescription key="fontDescription" name="SourceCodePro-Black" family="Source Code Pro" pointSize="24"/>
|
||||||
<textInputTraits key="textInputTraits"/>
|
<textInputTraits key="textInputTraits"/>
|
||||||
<connections>
|
<connections>
|
||||||
<outlet property="delegate" destination="302-fI-maQ" id="vji-9t-frp"/>
|
<outlet property="delegate" destination="GAB-fT-EFv" id="yvC-d8-wxn"/>
|
||||||
</connections>
|
</connections>
|
||||||
</textField>
|
</textField>
|
||||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="qek-2l-YQf" userLabel="Site Name">
|
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="VNc-fL-Vfa" userLabel="Site Name">
|
||||||
<rect key="frame" x="20" y="71" width="264" height="14"/>
|
<rect key="frame" x="8" y="71" width="284" height="14"/>
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
||||||
<accessibility key="accessibilityConfiguration" label="">
|
<accessibility key="accessibilityConfiguration" label="">
|
||||||
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
||||||
@ -444,23 +468,13 @@
|
|||||||
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
<size key="shadowOffset" width="0.0" height="1"/>
|
<size key="shadowOffset" width="0.0" height="1"/>
|
||||||
</label>
|
</label>
|
||||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="1" textAlignment="right" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="I2J-B6-5rE" userLabel="Counter">
|
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="VK7-hX-lfg" userLabel="Upgrade">
|
||||||
<rect key="frame" x="220" y="69" width="11" height="19"/>
|
<rect key="frame" x="221" y="56" width="44" height="44"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" hint="Site's counter."/>
|
|
||||||
<fontDescription key="fontDescription" name="Copperplate-Bold" family="Copperplate" pointSize="17"/>
|
|
||||||
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<nil key="highlightedColor"/>
|
|
||||||
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<size key="shadowOffset" width="0.0" height="1"/>
|
|
||||||
</label>
|
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="iLD-rv-uZZ" userLabel="Upgrade">
|
|
||||||
<rect key="frame" x="225" y="56" width="44" height="44"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
||||||
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
||||||
<constraints>
|
<constraints>
|
||||||
<constraint firstAttribute="height" constant="44" id="1B8-GB-TBc"/>
|
<constraint firstAttribute="height" constant="44" id="E7V-hA-BF3"/>
|
||||||
<constraint firstAttribute="width" constant="44" id="b9e-xF-5OF"/>
|
<constraint firstAttribute="width" constant="44" id="kOU-wM-VIE"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
||||||
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
||||||
@ -472,112 +486,11 @@
|
|||||||
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
</state>
|
</state>
|
||||||
<connections>
|
<connections>
|
||||||
<action selector="doUpgrade:" destination="302-fI-maQ" eventType="touchUpInside" id="iaP-5Y-5re"/>
|
<action selector="doUpgrade:" destination="GAB-fT-EFv" eventType="touchUpInside" id="cya-3E-5WH"/>
|
||||||
</connections>
|
</connections>
|
||||||
</button>
|
</button>
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fQc-Fn-JDq" userLabel="Incrementer">
|
|
||||||
<rect key="frame" x="225" y="56" width="44" height="44"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" hint="Increments the site counter."/>
|
|
||||||
<gestureRecognizers/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstAttribute="width" constant="44" id="1j5-Ke-znk"/>
|
|
||||||
<constraint firstAttribute="height" constant="44" id="BWc-06-jSP"/>
|
|
||||||
</constraints>
|
|
||||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
|
||||||
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
|
||||||
<state key="normal" image="icon_plus.png">
|
|
||||||
<color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
<state key="highlighted">
|
|
||||||
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
<connections>
|
|
||||||
<action selector="doIncrementCounter:" destination="302-fI-maQ" eventType="touchUpInside" id="Aa1-tk-whD"/>
|
|
||||||
</connections>
|
|
||||||
</button>
|
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cOv-2G-EAP" userLabel="User">
|
|
||||||
<rect key="frame" x="260" y="56" width="44" height="44"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstAttribute="height" constant="44" id="63k-ii-B9M"/>
|
|
||||||
<constraint firstAttribute="width" constant="44" id="ovE-9u-ASE"/>
|
|
||||||
</constraints>
|
|
||||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
|
||||||
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
|
||||||
<state key="normal" image="icon_person.png">
|
|
||||||
<color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
<state key="highlighted">
|
|
||||||
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
<connections>
|
|
||||||
<action selector="doUser:" destination="302-fI-maQ" eventType="touchUpInside" id="Fp9-L4-hlU"/>
|
|
||||||
</connections>
|
|
||||||
</button>
|
|
||||||
</subviews>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
|
||||||
</view>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.59999999999999998" colorSpace="calibratedWhite"/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstAttribute="bottom" secondItem="cOv-2G-EAP" secondAttribute="bottom" id="7S8-gd-JGz"/>
|
|
||||||
<constraint firstItem="iLD-rv-uZZ" firstAttribute="centerY" secondItem="fQc-Fn-JDq" secondAttribute="centerY" id="B7r-cy-SEz"/>
|
|
||||||
<constraint firstItem="fQc-Fn-JDq" firstAttribute="leading" secondItem="I2J-B6-5rE" secondAttribute="trailing" constant="-6" id="BP2-UH-wUX"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="qek-2l-YQf" secondAttribute="trailing" constant="20" id="MpX-WR-hsJ"/>
|
|
||||||
<constraint firstItem="qek-2l-YQf" firstAttribute="centerY" secondItem="I2J-B6-5rE" secondAttribute="centerY" id="TlY-I8-4hD"/>
|
|
||||||
<constraint firstItem="iLD-rv-uZZ" firstAttribute="centerX" secondItem="fQc-Fn-JDq" secondAttribute="centerX" id="Yiw-hl-6Vx"/>
|
|
||||||
<constraint firstItem="q75-Uz-86O" firstAttribute="leading" secondItem="302-fI-maQ" secondAttribute="leading" constant="8" id="cje-ch-eNp"/>
|
|
||||||
<constraint firstItem="q75-Uz-86O" firstAttribute="top" secondItem="302-fI-maQ" secondAttribute="top" constant="20" id="ers-pj-TbP"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="cOv-2G-EAP" secondAttribute="trailing" id="fNx-v1-XM3"/>
|
|
||||||
<constraint firstItem="cOv-2G-EAP" firstAttribute="leading" secondItem="fQc-Fn-JDq" secondAttribute="trailing" constant="-9" id="hqr-ru-rB7"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="q75-Uz-86O" secondAttribute="trailing" constant="8" id="iaI-mT-Mq3"/>
|
|
||||||
<constraint firstItem="cOv-2G-EAP" firstAttribute="centerY" secondItem="fQc-Fn-JDq" secondAttribute="centerY" id="rrx-LF-Hk9"/>
|
|
||||||
<constraint firstItem="fQc-Fn-JDq" firstAttribute="centerY" secondItem="I2J-B6-5rE" secondAttribute="centerY" id="uR7-lg-A9q"/>
|
|
||||||
<constraint firstItem="qek-2l-YQf" firstAttribute="leading" secondItem="302-fI-maQ" secondAttribute="leading" constant="20" id="wUJ-7N-Z1z"/>
|
|
||||||
</constraints>
|
|
||||||
<connections>
|
|
||||||
<outlet property="contentField" destination="q75-Uz-86O" id="so3-qq-0Lv"/>
|
|
||||||
<outlet property="counterButton" destination="fQc-Fn-JDq" id="1QL-JK-tHn"/>
|
|
||||||
<outlet property="counterLabel" destination="I2J-B6-5rE" id="C4b-gE-XHW"/>
|
|
||||||
<outlet property="loginButton" destination="cOv-2G-EAP" id="WoR-eP-Ztq"/>
|
|
||||||
<outlet property="nameLabel" destination="qek-2l-YQf" id="CcC-PM-kMx"/>
|
|
||||||
<outlet property="upgradeButton" destination="iLD-rv-uZZ" id="OKi-9X-R6F"/>
|
|
||||||
</connections>
|
|
||||||
</collectionViewCell>
|
|
||||||
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="MPPasswordStoredCell" id="GAB-fT-EFv" customClass="MPPasswordStoredCell">
|
|
||||||
<rect key="frame" x="8" y="110" width="304" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
|
||||||
<rect key="frame" x="0.0" y="0.0" width="304" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<subviews>
|
|
||||||
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="Pa$sW0rD" textAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="45O-9d-keG">
|
|
||||||
<rect key="frame" x="8" y="20" width="288" height="37"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
||||||
<color key="textColor" red="0.40000000600000002" green="0.80000001190000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<fontDescription key="fontDescription" name="AmericanTypewriter-Bold" family="American Typewriter" pointSize="30"/>
|
|
||||||
<textInputTraits key="textInputTraits"/>
|
|
||||||
<connections>
|
|
||||||
<outlet property="delegate" destination="GAB-fT-EFv" id="tBW-n5-SOj"/>
|
|
||||||
</connections>
|
|
||||||
</textField>
|
|
||||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="VNc-fL-Vfa" userLabel="Site Name">
|
|
||||||
<rect key="frame" x="20" y="71" width="264" height="14"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" label="">
|
|
||||||
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
|
||||||
</accessibility>
|
|
||||||
<fontDescription key="fontDescription" name="Copperplate" family="Copperplate" pointSize="12"/>
|
|
||||||
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<nil key="highlightedColor"/>
|
|
||||||
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<size key="shadowOffset" width="0.0" height="1"/>
|
|
||||||
</label>
|
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="UAg-Fn-Iph" userLabel="Edit">
|
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="UAg-Fn-Iph" userLabel="Edit">
|
||||||
<rect key="frame" x="225" y="56" width="44" height="44"/>
|
<rect key="frame" x="221" y="56" width="44" height="44"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
||||||
<accessibility key="accessibilityConfiguration" hint="Edits the password."/>
|
<accessibility key="accessibilityConfiguration" hint="Edits the password."/>
|
||||||
<constraints>
|
<constraints>
|
||||||
@ -598,7 +511,7 @@
|
|||||||
</connections>
|
</connections>
|
||||||
</button>
|
</button>
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="T1f-JH-Ppw" userLabel="User">
|
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="T1f-JH-Ppw" userLabel="User">
|
||||||
<rect key="frame" x="260" y="56" width="44" height="44"/>
|
<rect key="frame" x="256" y="56" width="44" height="44"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
||||||
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
||||||
<constraints>
|
<constraints>
|
||||||
@ -621,45 +534,58 @@
|
|||||||
</subviews>
|
</subviews>
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
||||||
</view>
|
</view>
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.59999999999999998" colorSpace="calibratedWhite"/>
|
<color key="backgroundColor" red="0.18823529411764706" green="0.15686274509803921" blue="0.15686274509803921" alpha="0.5" colorSpace="calibratedRGB"/>
|
||||||
<constraints>
|
<constraints>
|
||||||
<constraint firstItem="VNc-fL-Vfa" firstAttribute="leading" secondItem="GAB-fT-EFv" secondAttribute="leading" constant="20" id="6xg-dp-fSn"/>
|
<constraint firstItem="AAG-mH-nNg" firstAttribute="leading" secondItem="GAB-fT-EFv" secondAttribute="leading" constant="-10" id="4XF-xn-KAY"/>
|
||||||
|
<constraint firstItem="VNc-fL-Vfa" firstAttribute="leading" secondItem="GAB-fT-EFv" secondAttribute="leading" constant="8" id="6xg-dp-fSn"/>
|
||||||
<constraint firstItem="VNc-fL-Vfa" firstAttribute="centerY" secondItem="T1f-JH-Ppw" secondAttribute="centerY" id="AyR-HZ-NlG"/>
|
<constraint firstItem="VNc-fL-Vfa" firstAttribute="centerY" secondItem="T1f-JH-Ppw" secondAttribute="centerY" id="AyR-HZ-NlG"/>
|
||||||
<constraint firstItem="T1f-JH-Ppw" firstAttribute="leading" secondItem="UAg-Fn-Iph" secondAttribute="trailing" constant="-9" id="Gg8-aq-N5i"/>
|
<constraint firstItem="T1f-JH-Ppw" firstAttribute="leading" secondItem="UAg-Fn-Iph" secondAttribute="trailing" constant="-9" id="Gg8-aq-N5i"/>
|
||||||
|
<constraint firstItem="ig3-Gj-BQO" firstAttribute="top" secondItem="GAB-fT-EFv" secondAttribute="top" constant="20" id="K8T-Cj-QcR"/>
|
||||||
|
<constraint firstAttribute="trailing" secondItem="ig3-Gj-BQO" secondAttribute="trailing" constant="8" id="Q49-bU-waK"/>
|
||||||
|
<constraint firstItem="UAg-Fn-Iph" firstAttribute="centerX" secondItem="VK7-hX-lfg" secondAttribute="centerX" id="RFD-Nw-OJO"/>
|
||||||
<constraint firstAttribute="bottom" secondItem="T1f-JH-Ppw" secondAttribute="bottom" id="T3G-Pa-eDv"/>
|
<constraint firstAttribute="bottom" secondItem="T1f-JH-Ppw" secondAttribute="bottom" id="T3G-Pa-eDv"/>
|
||||||
<constraint firstItem="45O-9d-keG" firstAttribute="leading" secondItem="GAB-fT-EFv" secondAttribute="leading" constant="8" id="Tao-A0-21k"/>
|
<constraint firstItem="ig3-Gj-BQO" firstAttribute="leading" secondItem="GAB-fT-EFv" secondAttribute="leading" constant="8" id="TyD-3r-HO4"/>
|
||||||
<constraint firstItem="UAg-Fn-Iph" firstAttribute="centerY" secondItem="T1f-JH-Ppw" secondAttribute="centerY" id="Vm3-2V-69e"/>
|
<constraint firstItem="UAg-Fn-Iph" firstAttribute="centerY" secondItem="T1f-JH-Ppw" secondAttribute="centerY" id="Vm3-2V-69e"/>
|
||||||
<constraint firstAttribute="trailing" secondItem="45O-9d-keG" secondAttribute="trailing" constant="8" id="auV-Nz-NrL"/>
|
<constraint firstAttribute="bottom" secondItem="AAG-mH-nNg" secondAttribute="bottom" constant="-20" id="btx-g1-Jei"/>
|
||||||
<constraint firstAttribute="trailing" secondItem="T1f-JH-Ppw" secondAttribute="trailing" id="gs2-po-9D2"/>
|
<constraint firstAttribute="trailing" secondItem="T1f-JH-Ppw" secondAttribute="trailing" id="gs2-po-9D2"/>
|
||||||
<constraint firstAttribute="trailing" secondItem="VNc-fL-Vfa" secondAttribute="trailing" constant="20" id="k3u-1Q-cKf"/>
|
<constraint firstAttribute="trailing" secondItem="VNc-fL-Vfa" secondAttribute="trailing" constant="8" id="k3u-1Q-cKf"/>
|
||||||
<constraint firstItem="45O-9d-keG" firstAttribute="top" secondItem="GAB-fT-EFv" secondAttribute="top" constant="20" id="qIK-xa-HCc"/>
|
<constraint firstItem="UAg-Fn-Iph" firstAttribute="centerY" secondItem="VK7-hX-lfg" secondAttribute="centerY" id="t2J-rG-JlV"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
<connections>
|
<connections>
|
||||||
<outlet property="contentField" destination="45O-9d-keG" id="b56-gA-eQD"/>
|
<outlet property="contentField" destination="ig3-Gj-BQO" id="jhX-hf-14L"/>
|
||||||
<outlet property="editButton" destination="UAg-Fn-Iph" id="VLe-Hk-a9T"/>
|
<outlet property="editButton" destination="UAg-Fn-Iph" id="VLe-Hk-a9T"/>
|
||||||
<outlet property="loginButton" destination="T1f-JH-Ppw" id="KJN-iM-QFu"/>
|
<outlet property="loginButton" destination="T1f-JH-Ppw" id="KJN-iM-QFu"/>
|
||||||
<outlet property="nameLabel" destination="VNc-fL-Vfa" id="kMh-xS-U1W"/>
|
<outlet property="nameLabel" destination="VNc-fL-Vfa" id="kMh-xS-U1W"/>
|
||||||
|
<outlet property="typeLabel" destination="AAG-mH-nNg" id="bBz-CA-Frx"/>
|
||||||
|
<outlet property="upgradeButton" destination="VK7-hX-lfg" id="Neg-6Q-Mfa"/>
|
||||||
</connections>
|
</connections>
|
||||||
</collectionViewCell>
|
</collectionViewCell>
|
||||||
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="0BZ-lH-jYe">
|
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="MPPasswordLargeGeneratedCell" id="302-fI-maQ" userLabel="Generated" customClass="MPPasswordLargeGeneratedCell">
|
||||||
<rect key="frame" x="0.0" y="220" width="155" height="100"/>
|
<rect key="frame" x="310" y="0.0" width="300" height="100"/>
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
||||||
<rect key="frame" x="0.0" y="0.0" width="155" height="100"/>
|
<rect key="frame" x="0.0" y="0.0" width="300" height="100"/>
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
<subviews>
|
<subviews>
|
||||||
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="SadwGafy7^Sidu" textAlignment="center" minimumFontSize="8" translatesAutoresizingMaskIntoConstraints="NO" id="GQM-CJ-dQd">
|
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.029999999999999999" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Long Password" lineBreakMode="clip" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qAD-3v-3aq" userLabel="Type">
|
||||||
<rect key="frame" x="8" y="20" width="139" height="37"/>
|
<rect key="frame" x="-10" y="19" width="604" height="101"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
|
<fontDescription key="fontDescription" name="Exo2.0-Bold" family="Exo 2.0" pointSize="84"/>
|
||||||
|
<color key="textColor" cocoaTouchSystemColor="lightTextColor"/>
|
||||||
|
<nil key="highlightedColor"/>
|
||||||
|
</label>
|
||||||
|
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="SadwGafy7^Sidu" textAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="q75-Uz-86O" userLabel="Content">
|
||||||
|
<rect key="frame" x="8" y="20" width="284" height="31"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||||
<color key="textColor" red="0.40000000600000002" green="0.80000001190000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
<color key="textColor" red="0.40000000600000002" green="0.80000001190000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
||||||
<fontDescription key="fontDescription" name="AmericanTypewriter-Bold" family="American Typewriter" pointSize="30"/>
|
<fontDescription key="fontDescription" name="SourceCodePro-Black" family="Source Code Pro" pointSize="24"/>
|
||||||
<textInputTraits key="textInputTraits"/>
|
<textInputTraits key="textInputTraits"/>
|
||||||
<connections>
|
<connections>
|
||||||
<outlet property="delegate" destination="0BZ-lH-jYe" id="oQO-GK-fja"/>
|
<outlet property="delegate" destination="302-fI-maQ" id="vji-9t-frp"/>
|
||||||
</connections>
|
</connections>
|
||||||
</textField>
|
</textField>
|
||||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="QSz-Qk-OvW" userLabel="Site Name">
|
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="qek-2l-YQf" userLabel="Site Name">
|
||||||
<rect key="frame" x="20" y="71" width="115" height="14"/>
|
<rect key="frame" x="8" y="71" width="284" height="14"/>
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
||||||
<accessibility key="accessibilityConfiguration" label="">
|
<accessibility key="accessibilityConfiguration" label="">
|
||||||
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
||||||
@ -670,13 +596,23 @@
|
|||||||
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
<size key="shadowOffset" width="0.0" height="1"/>
|
<size key="shadowOffset" width="0.0" height="1"/>
|
||||||
</label>
|
</label>
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Qk7-a4-gA6" userLabel="Upgrade">
|
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="1" textAlignment="right" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="I2J-B6-5rE" userLabel="Counter">
|
||||||
<rect key="frame" x="76" y="56" width="44" height="44"/>
|
<rect key="frame" x="216" y="69" width="11" height="19"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
||||||
|
<accessibility key="accessibilityConfiguration" hint="Site's counter."/>
|
||||||
|
<fontDescription key="fontDescription" name="Copperplate-Bold" family="Copperplate" pointSize="17"/>
|
||||||
|
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
<nil key="highlightedColor"/>
|
||||||
|
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
<size key="shadowOffset" width="0.0" height="1"/>
|
||||||
|
</label>
|
||||||
|
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="iLD-rv-uZZ" userLabel="Upgrade">
|
||||||
|
<rect key="frame" x="221" y="56" width="44" height="44"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
||||||
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
||||||
<constraints>
|
<constraints>
|
||||||
<constraint firstAttribute="width" constant="44" id="EFg-NW-Lx2"/>
|
<constraint firstAttribute="height" constant="44" id="1B8-GB-TBc"/>
|
||||||
<constraint firstAttribute="height" constant="44" id="aZj-Y5-b25"/>
|
<constraint firstAttribute="width" constant="44" id="b9e-xF-5OF"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
||||||
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
||||||
@ -687,79 +623,39 @@
|
|||||||
<state key="highlighted">
|
<state key="highlighted">
|
||||||
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
</state>
|
</state>
|
||||||
|
<connections>
|
||||||
|
<action selector="doUpgrade:" destination="302-fI-maQ" eventType="touchUpInside" id="iaP-5Y-5re"/>
|
||||||
|
</connections>
|
||||||
</button>
|
</button>
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="mPq-lP-EpR" userLabel="User">
|
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fQc-Fn-JDq" userLabel="Incrementer">
|
||||||
<rect key="frame" x="111" y="56" width="44" height="44"/>
|
<rect key="frame" x="221" y="56" width="44" height="44"/>
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
||||||
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
<accessibility key="accessibilityConfiguration" hint="Increments the site counter."/>
|
||||||
|
<gestureRecognizers/>
|
||||||
<constraints>
|
<constraints>
|
||||||
<constraint firstAttribute="width" constant="44" id="4jR-1R-yAU"/>
|
<constraint firstAttribute="width" constant="44" id="1j5-Ke-znk"/>
|
||||||
<constraint firstAttribute="height" constant="44" id="Pi8-T4-79d"/>
|
<constraint firstAttribute="height" constant="44" id="BWc-06-jSP"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
||||||
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
||||||
<state key="normal" image="icon_person.png">
|
<state key="normal" image="icon_plus.png">
|
||||||
<color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="calibratedRGB"/>
|
<color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="calibratedRGB"/>
|
||||||
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
</state>
|
</state>
|
||||||
<state key="highlighted">
|
<state key="highlighted">
|
||||||
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
</state>
|
</state>
|
||||||
</button>
|
|
||||||
</subviews>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
|
||||||
</view>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.59999999999999998" colorSpace="calibratedWhite"/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="QSz-Qk-OvW" secondAttribute="trailing" constant="20" id="2Xc-hh-sX7"/>
|
|
||||||
<constraint firstItem="mPq-lP-EpR" firstAttribute="leading" secondItem="Qk7-a4-gA6" secondAttribute="trailing" constant="-9" id="4A2-Ml-uO0"/>
|
|
||||||
<constraint firstAttribute="bottom" secondItem="mPq-lP-EpR" secondAttribute="bottom" id="7kY-m2-FAG"/>
|
|
||||||
<constraint firstItem="GQM-CJ-dQd" firstAttribute="top" secondItem="0BZ-lH-jYe" secondAttribute="top" constant="20" id="9kd-KY-a8k"/>
|
|
||||||
<constraint firstItem="Qk7-a4-gA6" firstAttribute="centerY" secondItem="mPq-lP-EpR" secondAttribute="centerY" id="EAR-7v-7xe"/>
|
|
||||||
<constraint firstItem="GQM-CJ-dQd" firstAttribute="leading" secondItem="0BZ-lH-jYe" secondAttribute="leading" constant="8" id="I7Y-es-UQg"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="GQM-CJ-dQd" secondAttribute="trailing" constant="8" id="Jxb-Yj-gWe"/>
|
|
||||||
<constraint firstItem="QSz-Qk-OvW" firstAttribute="leading" secondItem="0BZ-lH-jYe" secondAttribute="leading" constant="20" id="gn9-Hy-uB2"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="mPq-lP-EpR" secondAttribute="trailing" id="m6S-wc-D0g"/>
|
|
||||||
<constraint firstItem="mPq-lP-EpR" firstAttribute="centerY" secondItem="QSz-Qk-OvW" secondAttribute="centerY" id="rfv-dM-pnU"/>
|
|
||||||
</constraints>
|
|
||||||
<size key="customSize" width="155" height="100"/>
|
|
||||||
</collectionViewCell>
|
|
||||||
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="MPPasswordCell" id="vMF-fk-FYX" customClass="MPPasswordCell">
|
|
||||||
<rect key="frame" x="165" y="220" width="155" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
|
||||||
<rect key="frame" x="0.0" y="0.0" width="155" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<subviews>
|
|
||||||
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="Pa$sW0rD" textAlignment="center" minimumFontSize="8" translatesAutoresizingMaskIntoConstraints="NO" id="fmG-ML-oLT">
|
|
||||||
<rect key="frame" x="8" y="20" width="139" height="37"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
||||||
<color key="textColor" red="0.40000000600000002" green="0.80000001190000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<fontDescription key="fontDescription" name="AmericanTypewriter-Bold" family="American Typewriter" pointSize="30"/>
|
|
||||||
<textInputTraits key="textInputTraits"/>
|
|
||||||
<connections>
|
<connections>
|
||||||
<outlet property="delegate" destination="vMF-fk-FYX" id="m0K-yd-GFJ"/>
|
<action selector="doIncrementCounter:" destination="302-fI-maQ" eventType="touchUpInside" id="Aa1-tk-whD"/>
|
||||||
</connections>
|
</connections>
|
||||||
</textField>
|
</button>
|
||||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="IgW-NX-sao" userLabel="Site Name">
|
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cOv-2G-EAP" userLabel="User">
|
||||||
<rect key="frame" x="20" y="71" width="115" height="14"/>
|
<rect key="frame" x="256" y="56" width="44" height="44"/>
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" label="">
|
|
||||||
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
|
||||||
</accessibility>
|
|
||||||
<fontDescription key="fontDescription" name="Copperplate" family="Copperplate" pointSize="12"/>
|
|
||||||
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<nil key="highlightedColor"/>
|
|
||||||
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<size key="shadowOffset" width="0.0" height="1"/>
|
|
||||||
</label>
|
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="GLO-mQ-h0v" userLabel="User">
|
|
||||||
<rect key="frame" x="111" y="56" width="44" height="44"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
||||||
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
||||||
<constraints>
|
<constraints>
|
||||||
<constraint firstAttribute="height" constant="44" id="ap0-8v-rjl"/>
|
<constraint firstAttribute="height" constant="44" id="63k-ii-B9M"/>
|
||||||
<constraint firstAttribute="width" constant="44" id="cIv-y8-T8E"/>
|
<constraint firstAttribute="width" constant="44" id="ovE-9u-ASE"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
||||||
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
||||||
@ -771,296 +667,129 @@
|
|||||||
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
</state>
|
</state>
|
||||||
<connections>
|
<connections>
|
||||||
<action selector="doUser:" destination="vMF-fk-FYX" eventType="touchUpInside" id="bFe-ar-oI7"/>
|
<action selector="doUser:" destination="302-fI-maQ" eventType="touchUpInside" id="Fp9-L4-hlU"/>
|
||||||
</connections>
|
</connections>
|
||||||
</button>
|
</button>
|
||||||
</subviews>
|
</subviews>
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
||||||
</view>
|
</view>
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.59999999999999998" colorSpace="calibratedWhite"/>
|
<color key="backgroundColor" red="0.18823529411764706" green="0.18823529411764706" blue="0.18823529411764706" alpha="0.5" colorSpace="calibratedRGB"/>
|
||||||
<constraints>
|
<constraints>
|
||||||
<constraint firstItem="GLO-mQ-h0v" firstAttribute="centerY" secondItem="IgW-NX-sao" secondAttribute="centerY" id="Ao4-V2-0Gi"/>
|
<constraint firstItem="q75-Uz-86O" firstAttribute="top" secondItem="302-fI-maQ" secondAttribute="top" constant="20" id="4NG-CG-tXA"/>
|
||||||
<constraint firstItem="IgW-NX-sao" firstAttribute="leading" secondItem="vMF-fk-FYX" secondAttribute="leading" constant="20" id="PTq-1H-fK6"/>
|
<constraint firstAttribute="bottom" secondItem="cOv-2G-EAP" secondAttribute="bottom" id="7S8-gd-JGz"/>
|
||||||
<constraint firstItem="fmG-ML-oLT" firstAttribute="leading" secondItem="vMF-fk-FYX" secondAttribute="leading" constant="8" id="QJr-53-VsC"/>
|
<constraint firstItem="iLD-rv-uZZ" firstAttribute="centerY" secondItem="fQc-Fn-JDq" secondAttribute="centerY" id="B7r-cy-SEz"/>
|
||||||
<constraint firstAttribute="trailing" secondItem="fmG-ML-oLT" secondAttribute="trailing" constant="8" id="SbX-Wm-DF9"/>
|
<constraint firstItem="fQc-Fn-JDq" firstAttribute="leading" secondItem="I2J-B6-5rE" secondAttribute="trailing" constant="-6" id="BP2-UH-wUX"/>
|
||||||
<constraint firstAttribute="bottom" secondItem="GLO-mQ-h0v" secondAttribute="bottom" id="c3p-wS-mDB"/>
|
<constraint firstItem="qAD-3v-3aq" firstAttribute="leading" secondItem="302-fI-maQ" secondAttribute="leading" constant="-10" id="BxY-uQ-3gc"/>
|
||||||
<constraint firstItem="fmG-ML-oLT" firstAttribute="top" secondItem="vMF-fk-FYX" secondAttribute="top" constant="20" id="gex-YG-p9y"/>
|
<constraint firstAttribute="trailing" secondItem="qek-2l-YQf" secondAttribute="trailing" constant="8" id="MpX-WR-hsJ"/>
|
||||||
<constraint firstAttribute="trailing" secondItem="IgW-NX-sao" secondAttribute="trailing" constant="20" id="lfe-QA-3aM"/>
|
<constraint firstItem="qek-2l-YQf" firstAttribute="centerY" secondItem="I2J-B6-5rE" secondAttribute="centerY" id="TlY-I8-4hD"/>
|
||||||
<constraint firstAttribute="trailing" secondItem="GLO-mQ-h0v" secondAttribute="trailing" id="yXU-bt-rwt"/>
|
<constraint firstAttribute="bottom" secondItem="qAD-3v-3aq" secondAttribute="bottom" constant="-20" id="Yc1-x1-kYs"/>
|
||||||
|
<constraint firstItem="iLD-rv-uZZ" firstAttribute="centerX" secondItem="fQc-Fn-JDq" secondAttribute="centerX" id="Yiw-hl-6Vx"/>
|
||||||
|
<constraint firstAttribute="trailing" secondItem="q75-Uz-86O" secondAttribute="trailing" constant="8" id="ZsY-wg-aJt"/>
|
||||||
|
<constraint firstItem="q75-Uz-86O" firstAttribute="leading" secondItem="302-fI-maQ" secondAttribute="leading" constant="8" id="cee-Hz-2IS"/>
|
||||||
|
<constraint firstAttribute="trailing" secondItem="cOv-2G-EAP" secondAttribute="trailing" id="fNx-v1-XM3"/>
|
||||||
|
<constraint firstItem="cOv-2G-EAP" firstAttribute="leading" secondItem="fQc-Fn-JDq" secondAttribute="trailing" constant="-9" id="hqr-ru-rB7"/>
|
||||||
|
<constraint firstItem="cOv-2G-EAP" firstAttribute="centerY" secondItem="fQc-Fn-JDq" secondAttribute="centerY" id="rrx-LF-Hk9"/>
|
||||||
|
<constraint firstItem="fQc-Fn-JDq" firstAttribute="centerY" secondItem="I2J-B6-5rE" secondAttribute="centerY" id="uR7-lg-A9q"/>
|
||||||
|
<constraint firstItem="qek-2l-YQf" firstAttribute="leading" secondItem="302-fI-maQ" secondAttribute="leading" constant="8" id="wUJ-7N-Z1z"/>
|
||||||
</constraints>
|
</constraints>
|
||||||
<size key="customSize" width="155" height="100"/>
|
|
||||||
<connections>
|
<connections>
|
||||||
<outlet property="contentField" destination="fmG-ML-oLT" id="G9g-Nm-5O4"/>
|
<outlet property="contentField" destination="q75-Uz-86O" id="nbM-vd-uZi"/>
|
||||||
<outlet property="loginButton" destination="GLO-mQ-h0v" id="s2n-qw-Pu6"/>
|
<outlet property="counterButton" destination="fQc-Fn-JDq" id="1QL-JK-tHn"/>
|
||||||
<outlet property="nameLabel" destination="IgW-NX-sao" id="zUR-nh-FUZ"/>
|
<outlet property="counterLabel" destination="I2J-B6-5rE" id="C4b-gE-XHW"/>
|
||||||
|
<outlet property="loginButton" destination="cOv-2G-EAP" id="WoR-eP-Ztq"/>
|
||||||
|
<outlet property="nameLabel" destination="qek-2l-YQf" id="CcC-PM-kMx"/>
|
||||||
|
<outlet property="typeLabel" destination="qAD-3v-3aq" id="rAM-Kf-5xO"/>
|
||||||
|
<outlet property="upgradeButton" destination="iLD-rv-uZZ" id="OKi-9X-R6F"/>
|
||||||
</connections>
|
</connections>
|
||||||
</collectionViewCell>
|
</collectionViewCell>
|
||||||
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="yRD-Rk-pNt">
|
|
||||||
<rect key="frame" x="0.0" y="330" width="155" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
|
||||||
<rect key="frame" x="0.0" y="0.0" width="155" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<subviews>
|
|
||||||
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="Pa$sW0rD" textAlignment="center" minimumFontSize="8" translatesAutoresizingMaskIntoConstraints="NO" id="2iC-wr-tcf">
|
|
||||||
<rect key="frame" x="8" y="20" width="139" height="37"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
||||||
<color key="textColor" red="0.40000000600000002" green="0.80000001190000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<fontDescription key="fontDescription" name="AmericanTypewriter-Bold" family="American Typewriter" pointSize="30"/>
|
|
||||||
<textInputTraits key="textInputTraits"/>
|
|
||||||
<connections>
|
|
||||||
<outlet property="delegate" destination="yRD-Rk-pNt" id="Gcn-G5-0Je"/>
|
|
||||||
</connections>
|
|
||||||
</textField>
|
|
||||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="9DA-ac-KNn" userLabel="Site Name">
|
|
||||||
<rect key="frame" x="20" y="71" width="115" height="14"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" label="">
|
|
||||||
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
|
||||||
</accessibility>
|
|
||||||
<fontDescription key="fontDescription" name="Copperplate" family="Copperplate" pointSize="12"/>
|
|
||||||
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<nil key="highlightedColor"/>
|
|
||||||
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<size key="shadowOffset" width="0.0" height="1"/>
|
|
||||||
</label>
|
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="bBp-o1-2DC" userLabel="User">
|
|
||||||
<rect key="frame" x="111" y="56" width="44" height="44"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstAttribute="width" constant="44" id="2xR-Vo-eRP"/>
|
|
||||||
<constraint firstAttribute="height" constant="44" id="Pqb-BN-Viv"/>
|
|
||||||
</constraints>
|
|
||||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
|
||||||
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
|
||||||
<state key="normal" image="icon_person.png">
|
|
||||||
<color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
<state key="highlighted">
|
|
||||||
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
</button>
|
|
||||||
</subviews>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
|
||||||
</view>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.59999999999999998" colorSpace="calibratedWhite"/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="9DA-ac-KNn" secondAttribute="trailing" constant="20" id="7ll-PS-PVv"/>
|
|
||||||
<constraint firstItem="bBp-o1-2DC" firstAttribute="centerY" secondItem="9DA-ac-KNn" secondAttribute="centerY" id="Kuf-j0-Lem"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="2iC-wr-tcf" secondAttribute="trailing" constant="8" id="N6S-1n-AnC"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="bBp-o1-2DC" secondAttribute="trailing" id="eWM-zM-M7x"/>
|
|
||||||
<constraint firstAttribute="bottom" secondItem="bBp-o1-2DC" secondAttribute="bottom" id="fK6-KK-o5G"/>
|
|
||||||
<constraint firstItem="9DA-ac-KNn" firstAttribute="leading" secondItem="yRD-Rk-pNt" secondAttribute="leading" constant="20" id="fPx-Rd-uHs"/>
|
|
||||||
<constraint firstItem="2iC-wr-tcf" firstAttribute="leading" secondItem="yRD-Rk-pNt" secondAttribute="leading" constant="8" id="oR4-yn-VZm"/>
|
|
||||||
<constraint firstItem="2iC-wr-tcf" firstAttribute="top" secondItem="yRD-Rk-pNt" secondAttribute="top" constant="20" id="thP-7p-SnI"/>
|
|
||||||
</constraints>
|
|
||||||
<size key="customSize" width="155" height="100"/>
|
|
||||||
</collectionViewCell>
|
|
||||||
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="0w1-b0-Hlj">
|
|
||||||
<rect key="frame" x="165" y="330" width="155" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
|
||||||
<rect key="frame" x="0.0" y="0.0" width="155" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<subviews>
|
|
||||||
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="Pa$sW0rD" textAlignment="center" minimumFontSize="8" translatesAutoresizingMaskIntoConstraints="NO" id="vmd-6A-sMl">
|
|
||||||
<rect key="frame" x="8" y="20" width="139" height="37"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
||||||
<color key="textColor" red="0.40000000600000002" green="0.80000001190000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<fontDescription key="fontDescription" name="AmericanTypewriter-Bold" family="American Typewriter" pointSize="30"/>
|
|
||||||
<textInputTraits key="textInputTraits"/>
|
|
||||||
<connections>
|
|
||||||
<outlet property="delegate" destination="0w1-b0-Hlj" id="3ia-Ph-fjc"/>
|
|
||||||
</connections>
|
|
||||||
</textField>
|
|
||||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="fmF-pH-pLd" userLabel="Site Name">
|
|
||||||
<rect key="frame" x="20" y="71" width="115" height="14"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" label="">
|
|
||||||
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
|
||||||
</accessibility>
|
|
||||||
<fontDescription key="fontDescription" name="Copperplate" family="Copperplate" pointSize="12"/>
|
|
||||||
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<nil key="highlightedColor"/>
|
|
||||||
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<size key="shadowOffset" width="0.0" height="1"/>
|
|
||||||
</label>
|
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="6Fl-om-Iiu" userLabel="User">
|
|
||||||
<rect key="frame" x="111" y="56" width="44" height="44"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstAttribute="height" constant="44" id="CTZ-jo-l4M"/>
|
|
||||||
<constraint firstAttribute="width" constant="44" id="KJ5-NO-QS2"/>
|
|
||||||
</constraints>
|
|
||||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
|
||||||
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
|
||||||
<state key="normal" image="icon_person.png">
|
|
||||||
<color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
<state key="highlighted">
|
|
||||||
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
</button>
|
|
||||||
</subviews>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
|
||||||
</view>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.59999999999999998" colorSpace="calibratedWhite"/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstItem="6Fl-om-Iiu" firstAttribute="centerY" secondItem="fmF-pH-pLd" secondAttribute="centerY" id="Qlv-PS-RTP"/>
|
|
||||||
<constraint firstAttribute="bottom" secondItem="6Fl-om-Iiu" secondAttribute="bottom" id="YSf-1A-kWI"/>
|
|
||||||
<constraint firstItem="vmd-6A-sMl" firstAttribute="top" secondItem="0w1-b0-Hlj" secondAttribute="top" constant="20" id="YZB-wb-uG4"/>
|
|
||||||
<constraint firstItem="fmF-pH-pLd" firstAttribute="leading" secondItem="0w1-b0-Hlj" secondAttribute="leading" constant="20" id="aP8-Jm-RlA"/>
|
|
||||||
<constraint firstItem="vmd-6A-sMl" firstAttribute="leading" secondItem="0w1-b0-Hlj" secondAttribute="leading" constant="8" id="anp-q6-D5t"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="fmF-pH-pLd" secondAttribute="trailing" constant="20" id="etL-hj-MTZ"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="6Fl-om-Iiu" secondAttribute="trailing" id="gFA-Dj-2l0"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="vmd-6A-sMl" secondAttribute="trailing" constant="8" id="kjN-Rp-Yer"/>
|
|
||||||
</constraints>
|
|
||||||
<size key="customSize" width="155" height="100"/>
|
|
||||||
</collectionViewCell>
|
|
||||||
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="3uT-QC-zue">
|
|
||||||
<rect key="frame" x="0.0" y="440" width="155" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
|
||||||
<rect key="frame" x="0.0" y="0.0" width="155" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<subviews>
|
|
||||||
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="Pa$sW0rD" textAlignment="center" minimumFontSize="8" translatesAutoresizingMaskIntoConstraints="NO" id="Ksb-AB-je4">
|
|
||||||
<rect key="frame" x="8" y="20" width="139" height="37"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
||||||
<color key="textColor" red="0.40000000600000002" green="0.80000001190000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<fontDescription key="fontDescription" name="AmericanTypewriter-Bold" family="American Typewriter" pointSize="30"/>
|
|
||||||
<textInputTraits key="textInputTraits"/>
|
|
||||||
<connections>
|
|
||||||
<outlet property="delegate" destination="3uT-QC-zue" id="XFD-25-rYU"/>
|
|
||||||
</connections>
|
|
||||||
</textField>
|
|
||||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="stt-hA-Evt" userLabel="Site Name">
|
|
||||||
<rect key="frame" x="20" y="71" width="115" height="14"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" label="">
|
|
||||||
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
|
||||||
</accessibility>
|
|
||||||
<fontDescription key="fontDescription" name="Copperplate" family="Copperplate" pointSize="12"/>
|
|
||||||
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<nil key="highlightedColor"/>
|
|
||||||
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<size key="shadowOffset" width="0.0" height="1"/>
|
|
||||||
</label>
|
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="CQo-HB-txR" userLabel="User">
|
|
||||||
<rect key="frame" x="111" y="56" width="44" height="44"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstAttribute="width" constant="44" id="2fQ-4w-v0e"/>
|
|
||||||
<constraint firstAttribute="height" constant="44" id="rL5-1L-ADP"/>
|
|
||||||
</constraints>
|
|
||||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
|
||||||
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
|
||||||
<state key="normal" image="icon_person.png">
|
|
||||||
<color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
<state key="highlighted">
|
|
||||||
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
</button>
|
|
||||||
</subviews>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
|
||||||
</view>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.59999999999999998" colorSpace="calibratedWhite"/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="stt-hA-Evt" secondAttribute="trailing" constant="20" id="1vH-NN-gR9"/>
|
|
||||||
<constraint firstItem="stt-hA-Evt" firstAttribute="leading" secondItem="3uT-QC-zue" secondAttribute="leading" constant="20" id="6V4-6W-QOt"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="CQo-HB-txR" secondAttribute="trailing" id="BTA-hM-ZgK"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="Ksb-AB-je4" secondAttribute="trailing" constant="8" id="Mq0-yg-ABv"/>
|
|
||||||
<constraint firstItem="Ksb-AB-je4" firstAttribute="top" secondItem="3uT-QC-zue" secondAttribute="top" constant="20" id="Mvc-EN-TCW"/>
|
|
||||||
<constraint firstAttribute="bottom" secondItem="CQo-HB-txR" secondAttribute="bottom" id="V3f-eG-dNX"/>
|
|
||||||
<constraint firstItem="Ksb-AB-je4" firstAttribute="leading" secondItem="3uT-QC-zue" secondAttribute="leading" constant="8" id="Zkh-n6-JMw"/>
|
|
||||||
<constraint firstItem="CQo-HB-txR" firstAttribute="centerY" secondItem="stt-hA-Evt" secondAttribute="centerY" id="e2L-hz-pcZ"/>
|
|
||||||
</constraints>
|
|
||||||
<size key="customSize" width="155" height="100"/>
|
|
||||||
</collectionViewCell>
|
|
||||||
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="Hfe-CZ-2BC">
|
|
||||||
<rect key="frame" x="165" y="440" width="155" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
|
||||||
<rect key="frame" x="0.0" y="0.0" width="155" height="100"/>
|
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
|
||||||
<subviews>
|
|
||||||
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="Pa$sW0rD" textAlignment="center" minimumFontSize="8" translatesAutoresizingMaskIntoConstraints="NO" id="8X9-yV-BkP">
|
|
||||||
<rect key="frame" x="8" y="20" width="139" height="37"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
||||||
<color key="textColor" red="0.40000000600000002" green="0.80000001190000003" blue="1" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<fontDescription key="fontDescription" name="AmericanTypewriter-Bold" family="American Typewriter" pointSize="30"/>
|
|
||||||
<textInputTraits key="textInputTraits"/>
|
|
||||||
<connections>
|
|
||||||
<outlet property="delegate" destination="Hfe-CZ-2BC" id="hP6-WH-1Gy"/>
|
|
||||||
</connections>
|
|
||||||
</textField>
|
|
||||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="RRk-AC-RlV" userLabel="Site Name">
|
|
||||||
<rect key="frame" x="20" y="71" width="115" height="14"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" label="">
|
|
||||||
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
|
||||||
</accessibility>
|
|
||||||
<fontDescription key="fontDescription" name="Copperplate" family="Copperplate" pointSize="12"/>
|
|
||||||
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<nil key="highlightedColor"/>
|
|
||||||
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
<size key="shadowOffset" width="0.0" height="1"/>
|
|
||||||
</label>
|
|
||||||
<button opaque="NO" alpha="0.5" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dB2-sC-eA2" userLabel="User">
|
|
||||||
<rect key="frame" x="111" y="56" width="44" height="44"/>
|
|
||||||
<autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
|
|
||||||
<accessibility key="accessibilityConfiguration" hint="Upgrades the password."/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstAttribute="height" constant="44" id="Z0D-sx-gIJ"/>
|
|
||||||
<constraint firstAttribute="width" constant="44" id="bUf-2D-RmT"/>
|
|
||||||
</constraints>
|
|
||||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
|
||||||
<inset key="contentEdgeInsets" minX="6" minY="6" maxX="6" maxY="6"/>
|
|
||||||
<state key="normal" image="icon_person.png">
|
|
||||||
<color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="calibratedRGB"/>
|
|
||||||
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
<state key="highlighted">
|
|
||||||
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
|
||||||
</state>
|
|
||||||
</button>
|
|
||||||
</subviews>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
|
||||||
</view>
|
|
||||||
<color key="backgroundColor" white="0.0" alpha="0.59999999999999998" colorSpace="calibratedWhite"/>
|
|
||||||
<constraints>
|
|
||||||
<constraint firstItem="RRk-AC-RlV" firstAttribute="leading" secondItem="Hfe-CZ-2BC" secondAttribute="leading" constant="20" id="1YQ-xy-BAI"/>
|
|
||||||
<constraint firstItem="8X9-yV-BkP" firstAttribute="top" secondItem="Hfe-CZ-2BC" secondAttribute="top" constant="20" id="5Ih-Uq-HbP"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="RRk-AC-RlV" secondAttribute="trailing" constant="20" id="ER8-Kl-P2T"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="dB2-sC-eA2" secondAttribute="trailing" id="Fwj-gF-Tda"/>
|
|
||||||
<constraint firstItem="8X9-yV-BkP" firstAttribute="leading" secondItem="Hfe-CZ-2BC" secondAttribute="leading" constant="8" id="NgE-du-kJi"/>
|
|
||||||
<constraint firstAttribute="trailing" secondItem="8X9-yV-BkP" secondAttribute="trailing" constant="8" id="UpS-lY-AUm"/>
|
|
||||||
<constraint firstItem="dB2-sC-eA2" firstAttribute="centerY" secondItem="RRk-AC-RlV" secondAttribute="centerY" id="aH0-KR-uHl"/>
|
|
||||||
<constraint firstAttribute="bottom" secondItem="dB2-sC-eA2" secondAttribute="bottom" id="nr7-tt-myr"/>
|
|
||||||
</constraints>
|
|
||||||
<size key="customSize" width="155" height="100"/>
|
|
||||||
</collectionViewCell>
|
|
||||||
</cells>
|
</cells>
|
||||||
<collectionReusableView key="sectionHeaderView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="ef2-bN-Zyo">
|
<connections>
|
||||||
|
<outlet property="dataSource" destination="vMF-fk-FYX" id="gLv-f4-PXT"/>
|
||||||
|
<outlet property="delegate" destination="vMF-fk-FYX" id="ch2-2f-37e"/>
|
||||||
|
</connections>
|
||||||
|
</collectionView>
|
||||||
|
</subviews>
|
||||||
|
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
||||||
|
</view>
|
||||||
|
<color key="backgroundColor" red="0.18823529411764706" green="0.25098039215686274" blue="0.18823529411764706" alpha="0.5" colorSpace="calibratedRGB"/>
|
||||||
|
<connections>
|
||||||
|
<outlet property="contentCollectionView" destination="7vV-gu-BNS" id="8KS-Ep-xTu"/>
|
||||||
|
</connections>
|
||||||
|
</collectionViewCell>
|
||||||
|
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="MPPasswordSmallGeneratedCell" id="yRD-Rk-pNt" userLabel="Small Generated" customClass="MPPasswordSmallGeneratedCell">
|
||||||
|
<rect key="frame" x="10" y="110" width="145" height="44"/>
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
</collectionReusableView>
|
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
||||||
<collectionReusableView key="sectionFooterView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="JAE-Ae-oH9">
|
<rect key="frame" x="0.0" y="0.0" width="145" height="44"/>
|
||||||
<autoresizingMask key="autoresizingMask"/>
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
</collectionReusableView>
|
<subviews>
|
||||||
|
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="9DA-ac-KNn" userLabel="Site Name">
|
||||||
|
<rect key="frame" x="8" y="15" width="129" height="14"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
||||||
|
<accessibility key="accessibilityConfiguration" label="">
|
||||||
|
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
||||||
|
</accessibility>
|
||||||
|
<fontDescription key="fontDescription" name="Copperplate" family="Copperplate" pointSize="12"/>
|
||||||
|
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
<nil key="highlightedColor"/>
|
||||||
|
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
<size key="shadowOffset" width="0.0" height="1"/>
|
||||||
|
</label>
|
||||||
|
</subviews>
|
||||||
|
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
||||||
|
</view>
|
||||||
|
<color key="backgroundColor" red="0.18823529410000001" green="0.18823529410000001" blue="0.18823529410000001" alpha="0.5" colorSpace="calibratedRGB"/>
|
||||||
|
<constraints>
|
||||||
|
<constraint firstAttribute="trailing" secondItem="9DA-ac-KNn" secondAttribute="trailing" constant="8" id="7ll-PS-PVv"/>
|
||||||
|
<constraint firstAttribute="bottom" secondItem="9DA-ac-KNn" secondAttribute="bottom" constant="15" id="UE0-fq-ybG"/>
|
||||||
|
<constraint firstItem="9DA-ac-KNn" firstAttribute="leading" secondItem="yRD-Rk-pNt" secondAttribute="leading" constant="8" id="fPx-Rd-uHs"/>
|
||||||
|
</constraints>
|
||||||
|
<size key="customSize" width="145" height="44"/>
|
||||||
|
<connections>
|
||||||
|
<outlet property="nameLabel" destination="9DA-ac-KNn" id="qfr-j0-Sdu"/>
|
||||||
|
</connections>
|
||||||
|
</collectionViewCell>
|
||||||
|
<collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="MPPasswordSmallStoredCell" id="sBj-8o-NKh" userLabel="Small Stored" customClass="MPPasswordSmallStoredCell">
|
||||||
|
<rect key="frame" x="165" y="110" width="145" height="44"/>
|
||||||
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
|
<view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
|
||||||
|
<rect key="frame" x="0.0" y="0.0" width="145" height="44"/>
|
||||||
|
<autoresizingMask key="autoresizingMask"/>
|
||||||
|
<subviews>
|
||||||
|
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" alpha="0.5" contentMode="left" text="apple.com" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="b8l-gc-zlp" userLabel="Site Name">
|
||||||
|
<rect key="frame" x="8" y="15" width="129" height="14"/>
|
||||||
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
|
||||||
|
<accessibility key="accessibilityConfiguration" label="">
|
||||||
|
<accessibilityTraits key="traits" none="YES" staticText="YES" summaryElement="YES"/>
|
||||||
|
</accessibility>
|
||||||
|
<fontDescription key="fontDescription" name="Copperplate" family="Copperplate" pointSize="12"/>
|
||||||
|
<color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
<nil key="highlightedColor"/>
|
||||||
|
<color key="shadowColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
|
||||||
|
<size key="shadowOffset" width="0.0" height="1"/>
|
||||||
|
</label>
|
||||||
|
</subviews>
|
||||||
|
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
||||||
|
</view>
|
||||||
|
<color key="backgroundColor" red="0.18823529410000001" green="0.15686274510000001" blue="0.15686274510000001" alpha="0.5" colorSpace="calibratedRGB"/>
|
||||||
|
<constraints>
|
||||||
|
<constraint firstItem="b8l-gc-zlp" firstAttribute="leading" secondItem="sBj-8o-NKh" secondAttribute="leading" constant="8" id="GmM-eV-uGU"/>
|
||||||
|
<constraint firstAttribute="trailing" secondItem="b8l-gc-zlp" secondAttribute="trailing" constant="8" id="frv-Rx-gkU"/>
|
||||||
|
<constraint firstAttribute="bottom" secondItem="b8l-gc-zlp" secondAttribute="bottom" constant="15" id="yq0-Rv-C4c"/>
|
||||||
|
</constraints>
|
||||||
|
<size key="customSize" width="145" height="44"/>
|
||||||
|
<connections>
|
||||||
|
<outlet property="nameLabel" destination="b8l-gc-zlp" id="kDU-9a-4Wk"/>
|
||||||
|
</connections>
|
||||||
|
</collectionViewCell>
|
||||||
|
</cells>
|
||||||
<connections>
|
<connections>
|
||||||
<outlet property="dataSource" destination="nkY-z6-8jd" id="5DW-tc-rAp"/>
|
<outlet property="dataSource" destination="nkY-z6-8jd" id="5DW-tc-rAp"/>
|
||||||
<outlet property="delegate" destination="nkY-z6-8jd" id="xhr-Qn-SBe"/>
|
<outlet property="delegate" destination="nkY-z6-8jd" id="xhr-Qn-SBe"/>
|
||||||
</connections>
|
</connections>
|
||||||
</collectionView>
|
</collectionView>
|
||||||
</subviews>
|
</subviews>
|
||||||
<color key="backgroundColor" cocoaTouchSystemColor="viewFlipsideBackgroundColor"/>
|
<color key="backgroundColor" red="0.12156862745098039" green="0.12941176470588237" blue="0.14117647058823529" alpha="1" colorSpace="calibratedRGB"/>
|
||||||
<constraints>
|
<constraints>
|
||||||
<constraint firstAttribute="bottom" secondItem="aXw-tn-8Sj" secondAttribute="bottom" id="4bI-12-Qmv"/>
|
<constraint firstAttribute="bottom" secondItem="aXw-tn-8Sj" secondAttribute="bottom" id="4bI-12-Qmv"/>
|
||||||
<constraint firstItem="aXw-tn-8Sj" firstAttribute="top" secondItem="oAG-Ea-TOI" secondAttribute="bottom" id="Lm8-gO-ew5"/>
|
<constraint firstItem="aXw-tn-8Sj" firstAttribute="top" secondItem="oAG-Ea-TOI" secondAttribute="bottom" id="Lm8-gO-ew5"/>
|
||||||
@ -1124,7 +853,6 @@
|
|||||||
<image name="icon_person.png" width="32" height="32"/>
|
<image name="icon_person.png" width="32" height="32"/>
|
||||||
<image name="icon_plus.png" width="32" height="32"/>
|
<image name="icon_plus.png" width="32" height="32"/>
|
||||||
<image name="icon_up.png" width="32" height="32"/>
|
<image name="icon_up.png" width="32" height="32"/>
|
||||||
<image name="keyboard-dark.png" width="320" height="216"/>
|
|
||||||
<image name="tip_basic_black.png" width="210" height="60"/>
|
<image name="tip_basic_black.png" width="210" height="60"/>
|
||||||
<image name="ui_spinner.png" width="75" height="75"/>
|
<image name="ui_spinner.png" width="75" height="75"/>
|
||||||
<image name="ui_textfield.png" width="158" height="34"/>
|
<image name="ui_textfield.png" width="158" height="34"/>
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
MasterPassword/Resources/Media/Fonts/Exo2.0-Bold.otf
Normal file
BIN
MasterPassword/Resources/Media/Fonts/Exo2.0-Bold.otf
Normal file
Binary file not shown.
BIN
MasterPassword/Resources/Media/Fonts/Exo2.0-ExtraBold.otf
Normal file
BIN
MasterPassword/Resources/Media/Fonts/Exo2.0-ExtraBold.otf
Normal file
Binary file not shown.
BIN
MasterPassword/Resources/Media/Fonts/Exo2.0-Regular.otf
Normal file
BIN
MasterPassword/Resources/Media/Fonts/Exo2.0-Regular.otf
Normal file
Binary file not shown.
BIN
MasterPassword/Resources/Media/Fonts/Exo2.0-Thin.otf
Normal file
BIN
MasterPassword/Resources/Media/Fonts/Exo2.0-Thin.otf
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user