From 6a2dce11e6516d06fe58abe34ead9babf507bb2e Mon Sep 17 00:00:00 2001 From: Mike Ahmarani Date: Wed, 6 Apr 2011 02:34:32 -0400 Subject: [PATCH] Uploading project. --- MAConfirmButton/MAConfirmButton.h | 1 - MAConfirmButton/MAConfirmButton.m | 128 +- README.textile | 2 +- .../UserInterfaceState.xcuserstate | 1061 +++++++++-------- 4 files changed, 653 insertions(+), 539 deletions(-) diff --git a/MAConfirmButton/MAConfirmButton.h b/MAConfirmButton/MAConfirmButton.h index 4939c71..37de6fd 100644 --- a/MAConfirmButton/MAConfirmButton.h +++ b/MAConfirmButton/MAConfirmButton.h @@ -31,6 +31,5 @@ - (void)disableWithTitle:(NSString *)t; - (void)setAnchor:(CGPoint)a; - (void)setTintColor:(UIColor *)color; -- (void)toggle; @end diff --git a/MAConfirmButton/MAConfirmButton.m b/MAConfirmButton/MAConfirmButton.m index 8aa2e52..dc2c420 100644 --- a/MAConfirmButton/MAConfirmButton.m +++ b/MAConfirmButton/MAConfirmButton.m @@ -12,6 +12,14 @@ #define kPadding 20.0 #define kFontSize 14.0 +@interface MAConfirmButton () +- (void)toggle; +- (void)setupLayers; +- (void)cancel; +- (void)lighten; +- (void)darken; +@end + @implementation MAConfirmButton @synthesize title, confirm, disabled, tint; @@ -34,18 +42,60 @@ + (MAConfirmButton *)buttonWithDisabledTitle:(NSString *)t{ return button; } --(void)setSelected:(BOOL)s{ - if(cancelOverlay){ - [cancelOverlay removeFromSuperview]; - cancelOverlay = nil; +- (id)initWithDisabledTitle:(NSString *)t{ + self = [super initWithFrame:CGRectMake(300, 150, 75, 26)]; + if(self != nil){ + disabled = [t retain]; + + self.layer.needsDisplayOnBoundsChange = YES; + + CGSize size = [disabled sizeWithFont:[UIFont boldSystemFontOfSize:kFontSize]]; + CGRect r = self.frame; + r.size.width = size.width+kPadding; + self.frame = r; + + [self setTitle:disabled forState:UIControlStateNormal]; + [self setTitleColor:[UIColor colorWithWhite:0.6 alpha:1] forState:UIControlStateNormal]; + [self setTitleShadowColor:[UIColor colorWithWhite:1 alpha:1] forState:UIControlStateNormal]; + + self.titleLabel.textAlignment = UITextAlignmentCenter; + self.titleLabel.shadowOffset = CGSizeMake(0, 1); + self.titleLabel.backgroundColor = [UIColor clearColor]; + self.titleLabel.font = [UIFont boldSystemFontOfSize:kFontSize]; + self.tint = [UIColor colorWithWhite:0.85 alpha:1]; + + [self setupLayers]; } - selected = s; - [self toggle]; + return self; } -- (void)disableWithTitle:(NSString *)t{ - self.disabled = [t retain]; - [self toggle]; +- (id)initWithTitle:(NSString *)t confirm:(NSString *)c{ + self = [super initWithFrame:CGRectMake(300, 150, 75, 26)]; + if(self != nil){ + + self.title = [t retain]; + self.confirm = [c retain]; + + self.layer.needsDisplayOnBoundsChange = YES; + + CGSize size = [title sizeWithFont:[UIFont boldSystemFontOfSize:kFontSize]]; + CGRect r = self.frame; + r.size.width = size.width+kPadding; + self.frame = r; + + [self setTitle:title forState:UIControlStateNormal]; + [self setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; + [self setTitleShadowColor:[UIColor colorWithWhite:0 alpha:0.5] forState:UIControlStateNormal]; + + self.titleLabel.textAlignment = UITextAlignmentCenter; + self.titleLabel.shadowOffset = CGSizeMake(0, -1); + self.titleLabel.backgroundColor = [UIColor clearColor]; + self.titleLabel.font = [UIFont boldSystemFontOfSize:kFontSize]; + self.tint = [UIColor colorWithRed:0.220 green:0.357 blue:0.608 alpha:1]; + + [self setupLayers]; + } + return self; } -(void)toggle{ @@ -152,60 +202,18 @@ - (void)setupLayers{ } -- (id)initWithDisabledTitle:(NSString *)t{ - self = [super initWithFrame:CGRectMake(300, 150, 75, 26)]; - if(self != nil){ - disabled = [t retain]; - - self.layer.needsDisplayOnBoundsChange = YES; - - CGSize size = [disabled sizeWithFont:[UIFont boldSystemFontOfSize:kFontSize]]; - CGRect r = self.frame; - r.size.width = size.width+kPadding; - self.frame = r; - - [self setTitle:disabled forState:UIControlStateNormal]; - [self setTitleColor:[UIColor colorWithWhite:0.6 alpha:1] forState:UIControlStateNormal]; - [self setTitleShadowColor:[UIColor colorWithWhite:1 alpha:1] forState:UIControlStateNormal]; - - self.titleLabel.textAlignment = UITextAlignmentCenter; - self.titleLabel.shadowOffset = CGSizeMake(0, 1); - self.titleLabel.backgroundColor = [UIColor clearColor]; - self.titleLabel.font = [UIFont boldSystemFontOfSize:kFontSize]; - self.tint = [UIColor colorWithWhite:0.85 alpha:1]; - - [self setupLayers]; +-(void)setSelected:(BOOL)s{ + if(cancelOverlay){ + [cancelOverlay removeFromSuperview]; + cancelOverlay = nil; } - return self; + selected = s; + [self toggle]; } -- (id)initWithTitle:(NSString *)t confirm:(NSString *)c{ - self = [super initWithFrame:CGRectMake(300, 150, 75, 26)]; - if(self != nil){ - - self.title = [t retain]; - self.confirm = [c retain]; - - self.layer.needsDisplayOnBoundsChange = YES; - - CGSize size = [title sizeWithFont:[UIFont boldSystemFontOfSize:kFontSize]]; - CGRect r = self.frame; - r.size.width = size.width+kPadding; - self.frame = r; - - [self setTitle:title forState:UIControlStateNormal]; - [self setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; - [self setTitleShadowColor:[UIColor colorWithWhite:0 alpha:0.5] forState:UIControlStateNormal]; - - self.titleLabel.textAlignment = UITextAlignmentCenter; - self.titleLabel.shadowOffset = CGSizeMake(0, -1); - self.titleLabel.backgroundColor = [UIColor clearColor]; - self.titleLabel.font = [UIFont boldSystemFontOfSize:kFontSize]; - self.tint = [UIColor colorWithRed:0.220 green:0.357 blue:0.608 alpha:1]; - - [self setupLayers]; - } - return self; +- (void)disableWithTitle:(NSString *)t{ + self.disabled = [t retain]; + [self toggle]; } -(void)setAnchor:(CGPoint)anchor{ diff --git a/README.textile b/README.textile index 690c6fb..9b419d4 100644 --- a/README.textile +++ b/README.textile @@ -4,7 +4,7 @@ MAConfirmButton is an animated subclass of UIButton that replicates and improves h2. Usage -I attempted to make this class as "drop-in" as possible with regards to it being a subclass of UIButton. +I attempted to make this class as "drop-in" as possible since it is, after all, a subclass of UIButton. h3. Init diff --git a/Sample.xcodeproj/project.xcworkspace/xcuserdata/Mike.xcuserdatad/UserInterfaceState.xcuserstate b/Sample.xcodeproj/project.xcworkspace/xcuserdata/Mike.xcuserdatad/UserInterfaceState.xcuserstate index a8297d1..3bc9383 100644 --- a/Sample.xcodeproj/project.xcworkspace/xcuserdata/Mike.xcuserdatad/UserInterfaceState.xcuserstate +++ b/Sample.xcodeproj/project.xcworkspace/xcuserdata/Mike.xcuserdatad/UserInterfaceState.xcuserstate @@ -40,7 +40,7 @@ CF$UID - 412 + 422 @@ -2044,27 +2044,27 @@ CF$UID - 362 + 368 CF$UID - 367 + 373 CF$UID - 370 + 376 CF$UID - 399 + 407 CF$UID - 400 + 408 CF$UID - 407 + 415 CF$UID @@ -2124,11 +2124,11 @@ CF$UID - 328 + 334 CF$UID - 345 + 351 @@ -2924,52 +2924,60 @@ CF$UID 280 + + CF$UID + 282 + NS.objects CF$UID - 282 + 284 CF$UID - 289 + 292 CF$UID - 293 + 295 CF$UID - 296 + 298 CF$UID - 299 + 306 CF$UID - 303 + 310 CF$UID - 307 + 314 CF$UID - 315 + 318 CF$UID - 319 + 320 CF$UID - 321 + 324 CF$UID - 325 + 327 + + + CF$UID + 331 @@ -2997,7 +3005,7 @@ 45 NS.string - file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/Sample/SampleAppDelegate.m + file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/Sample/SampleViewController.h $class @@ -3023,7 +3031,7 @@ 45 NS.string - file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/Sample/SampleViewController.m + file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/MAConfirmButton/UIColor-Expanded.m $class @@ -3075,7 +3083,7 @@ 45 NS.string - file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/MAConfirmButton/UIColor-Expanded.m + file://localhost/Users/Mike/Development/Classes/MAConfirmButton/MAConfirmButton/MAConfirmButton.h $class @@ -3101,7 +3109,7 @@ 45 NS.string - file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/MAConfirmButton/MAConfirmButton.m + file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/MAConfirmButton/MAConfirmButton.h $class @@ -3127,7 +3135,7 @@ 45 NS.string - file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/MAConfirmButton/MAConfirmButton.h + file://localhost/Users/Mike/Development/Classes/MAConfirmButton/Sample/SampleViewController.m $class @@ -3153,7 +3161,7 @@ 45 NS.string - file://localhost/Users/Mike/Development/Classes/MAConfirmButton/MAConfirmButton/MAConfirmButton.h + file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/Sample/SampleViewController.m $class @@ -3179,7 +3187,7 @@ 45 NS.string - file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/Sample/SampleViewController.h + file://localhost/Users/Mike/Development/My%20Classes/MAConfirmButton/Sample/SampleViewController.m $class @@ -3205,7 +3213,7 @@ 45 NS.string - file://localhost/Users/Mike/Development/My%20Classes/MAConfirmButton/Sample/SampleViewController.m + file://localhost/Users/Mike/Development/Classes/MAConfirmButton/MAConfirmButton/MAConfirmButton.m $class @@ -3231,7 +3239,7 @@ 45 NS.string - file://localhost/Users/Mike/Development/Classes/MAConfirmButton/Sample/SampleViewController.m + file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/Sample/SampleAppDelegate.m $class @@ -3250,6 +3258,32 @@ 281 + + $class + + CF$UID + 45 + + NS.string + file://localhost/Users/Mike/Development/iPhone/MAConfirmButton/MAConfirmButton/MAConfirmButton.m + + + $class + + CF$UID + 97 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 283 + + $class @@ -3269,30 +3303,30 @@ CF$UID - 283 + 285 CF$UID - 284 + 286 CF$UID - 285 + 287 CF$UID - 286 + 288 NS.objects CF$UID - 287 + 289 CF$UID - 288 + 290 CF$UID @@ -3300,7 +3334,7 @@ CF$UID - 258 + 291 @@ -3308,8 +3342,9 @@ PrimaryDocumentVisibleCharacterRange HideAllIssues PrimaryDocumentSelectedCharacterRange - 323755746.83035803 - {486, 1823} + 323736519.849971 + {0, 273} + {262, 0} $class @@ -3320,30 +3355,30 @@ CF$UID - 283 + 285 CF$UID - 284 + 286 CF$UID - 285 + 287 CF$UID - 286 + 288 NS.objects CF$UID - 290 + 293 CF$UID - 291 + 294 CF$UID @@ -3351,13 +3386,12 @@ CF$UID - 292 + 258 - 323760893.72377199 - {0, 1343} - {750, 0} + 323729727.32834899 + {0, 1463} $class @@ -3368,30 +3402,30 @@ CF$UID - 283 + 285 CF$UID - 284 + 286 CF$UID - 285 + 287 CF$UID - 286 + 288 NS.objects CF$UID - 294 + 296 CF$UID - 295 + 297 CF$UID @@ -3415,30 +3449,30 @@ CF$UID - 283 + 299 CF$UID - 284 + 300 CF$UID - 285 + 301 CF$UID - 286 + 302 NS.objects CF$UID - 297 + 303 CF$UID - 298 + 304 CF$UID @@ -3446,12 +3480,17 @@ CF$UID - 258 + 305 - 323729727.32834899 - {0, 1463} + PrimaryDocumentTimestamp + PrimaryDocumentVisibleCharacterRange + HideAllIssues + PrimaryDocumentSelectedCharacterRange + 323764306.49468303 + {0, 911} + {835, 0} $class @@ -3462,30 +3501,30 @@ CF$UID - 283 + 285 CF$UID - 284 + 286 CF$UID - 285 + 287 CF$UID - 286 + 288 NS.objects CF$UID - 300 + 307 CF$UID - 301 + 308 CF$UID @@ -3493,13 +3532,13 @@ CF$UID - 302 + 309 - 323760837.71096998 - {6942, 1603} - {5687, 0} + 323755745.819157 + {0, 927} + {835, 0} $class @@ -3510,30 +3549,30 @@ CF$UID - 283 + 299 CF$UID - 284 + 300 CF$UID - 285 + 301 CF$UID - 286 + 302 NS.objects CF$UID - 304 + 311 CF$UID - 305 + 312 CF$UID @@ -3541,13 +3580,13 @@ CF$UID - 306 + 313 - 323755745.819157 - {0, 927} - {835, 0} + 323762458.228697 + {0, 1343} + {750, 0} $class @@ -3558,30 +3597,30 @@ CF$UID - 308 + 285 CF$UID - 309 + 286 CF$UID - 310 + 287 CF$UID - 311 + 288 NS.objects CF$UID - 312 + 315 CF$UID - 313 + 316 CF$UID @@ -3589,17 +3628,13 @@ CF$UID - 314 + 317 - PrimaryDocumentTimestamp - PrimaryDocumentVisibleCharacterRange - HideAllIssues - PrimaryDocumentSelectedCharacterRange - 323762579.33218199 - {0, 927} - {796, 39} + 323760893.72377199 + {0, 1343} + {750, 0} $class @@ -3610,30 +3645,30 @@ CF$UID - 283 + 285 CF$UID - 284 + 286 CF$UID - 285 + 287 CF$UID - 286 + 288 NS.objects CF$UID - 316 + 319 CF$UID - 317 + 316 CF$UID @@ -3641,13 +3676,11 @@ CF$UID - 318 + 317 - 323736519.849971 - {0, 273} - {262, 0} + 323761742.03589898 $class @@ -3658,30 +3691,30 @@ CF$UID - 283 + 299 CF$UID - 284 + 300 CF$UID - 285 + 301 CF$UID - 286 + 302 NS.objects CF$UID - 320 + 321 CF$UID - 291 + 322 CF$UID @@ -3689,11 +3722,13 @@ CF$UID - 292 + 323 - 323761742.03589898 + 323764446.940121 + {0, 1094} + {351, 0} $class @@ -3704,30 +3739,30 @@ CF$UID - 308 + 285 CF$UID - 309 + 286 CF$UID - 310 + 287 CF$UID - 311 + 288 NS.objects CF$UID - 322 + 325 CF$UID - 323 + 326 CF$UID @@ -3735,13 +3770,12 @@ CF$UID - 324 + 258 - 323762458.228697 - {0, 1343} - {750, 0} + 323755746.83035803 + {486, 1823} $class @@ -3752,12 +3786,52 @@ CF$UID - 283 + 285 CF$UID - 284 + 286 + + CF$UID + 287 + + + CF$UID + 288 + + + NS.objects + + + CF$UID + 328 + + + CF$UID + 329 + + + CF$UID + 141 + + + CF$UID + 330 + + + + 323760837.71096998 + {6942, 1603} + {5687, 0} + + $class + + CF$UID + 83 + + NS.keys + CF$UID 285 @@ -3766,16 +3840,24 @@ CF$UID 286 + + CF$UID + 287 + + + CF$UID + 288 + NS.objects CF$UID - 326 + 332 CF$UID - 327 + 333 CF$UID @@ -3799,22 +3881,22 @@ CF$UID - 329 + 335 CF$UID - 331 + 337 NS.objects CF$UID - 333 + 339 CF$UID - 342 + 348 @@ -3832,7 +3914,7 @@ NS.relative CF$UID - 330 + 336 x-xcode-log://B0884420-E303-408E-83D6-23D044EB42A8 @@ -3850,7 +3932,7 @@ NS.relative CF$UID - 332 + 338 x-xcode-log://778A790C-3C8D-4294-AF19-D4B25F1C1E11 @@ -3864,14 +3946,14 @@ CF$UID - 334 + 340 NS.objects CF$UID - 335 + 341 @@ -3886,7 +3968,7 @@ CF$UID - 336 + 342 @@ -3894,19 +3976,19 @@ $class CF$UID - 341 + 347 documentURL CF$UID - 330 + 336 expandTranscript indexPath CF$UID - 337 + 343 timestamp @@ -3918,12 +4000,12 @@ $class CF$UID - 340 + 346 NSIndexPathData CF$UID - 338 + 344 NSIndexPathLength 2 @@ -3932,7 +4014,7 @@ $class CF$UID - 339 + 345 NS.data @@ -3978,14 +4060,14 @@ CF$UID - 334 + 340 NS.objects CF$UID - 343 + 349 @@ -3999,7 +4081,7 @@ CF$UID - 344 + 350 @@ -4007,19 +4089,19 @@ $class CF$UID - 341 + 347 documentURL CF$UID - 332 + 338 expandTranscript indexPath CF$UID - 337 + 343 timestamp @@ -4037,22 +4119,22 @@ CF$UID - 346 + 352 CF$UID - 348 + 354 NS.objects CF$UID - 350 + 356 CF$UID - 357 + 363 @@ -4070,7 +4152,7 @@ NS.relative CF$UID - 347 + 353 @@ -4096,7 +4178,7 @@ NS.relative CF$UID - 349 + 355 @@ -4137,11 +4219,11 @@ CF$UID - 351 + 357 CF$UID - 352 + 358 CF$UID @@ -4149,7 +4231,7 @@ CF$UID - 354 + 360 @@ -4174,7 +4256,7 @@ CF$UID - 353 + 359 @@ -4200,11 +4282,11 @@ CF$UID - 355 + 361 CF$UID - 356 + 362 @@ -4229,7 +4311,7 @@ CF$UID - 353 + 359 @@ -4262,11 +4344,11 @@ CF$UID - 358 + 364 CF$UID - 359 + 365 CF$UID @@ -4274,7 +4356,7 @@ CF$UID - 360 + 366 @@ -4328,7 +4410,7 @@ CF$UID - 361 + 367 @@ -4356,22 +4438,22 @@ CF$UID - 363 + 369 CF$UID - 364 + 370 NS.objects CF$UID - 365 + 371 CF$UID - 366 + 372 @@ -4389,14 +4471,14 @@ CF$UID - 368 + 374 NS.objects CF$UID - 369 + 375 @@ -4412,30 +4494,30 @@ CF$UID - 371 + 377 CF$UID - 372 + 378 CF$UID - 373 + 379 NS.objects CF$UID - 374 + 380 CF$UID - 398 + 405 CF$UID - 39 + 406 @@ -4452,19 +4534,19 @@ CF$UID - 375 + 381 CF$UID - 382 + 388 CF$UID - 385 + 392 CF$UID - 389 + 396 @@ -4478,30 +4560,30 @@ CF$UID - 376 + 382 CF$UID - 377 + 383 CF$UID - 378 + 384 NS.objects CF$UID - 379 + 385 CF$UID - 380 + 386 CF$UID - 381 + 387 @@ -4521,35 +4603,36 @@ CF$UID - 376 + 382 CF$UID - 377 + 383 CF$UID - 378 + 384 NS.objects CF$UID - 383 + 389 CF$UID - 384 + 390 CF$UID - 39 + 391 4 : + Sample $class @@ -4560,30 +4643,30 @@ CF$UID - 376 + 382 CF$UID - 377 + 383 CF$UID - 378 + 384 NS.objects CF$UID - 386 + 393 CF$UID - 387 + 394 CF$UID - 388 + 395 @@ -4593,7 +4676,7 @@ $class CF$UID - 339 + 345 NS.data @@ -4625,34 +4708,34 @@ CF$UID - 376 + 382 CF$UID - 390 + 397 CF$UID - 391 + 398 CF$UID - 378 + 384 CF$UID - 392 + 399 CF$UID - 393 + 400 NS.objects CF$UID - 394 + 401 CF$UID @@ -4660,11 +4743,11 @@ CF$UID - 395 + 402 CF$UID - 397 + 404 CF$UID @@ -4685,10 +4768,10 @@ $class CF$UID - 396 + 403 NS.time - 323761728.711326 + 323764434.72516203 $classes @@ -4699,8 +4782,9 @@ $classname NSDate - Today at 1:48 AM + Today at 2:33 AM 106 + Sample $class @@ -4725,14 +4809,14 @@ CF$UID - 401 + 409 NS.objects CF$UID - 402 + 410 @@ -4763,22 +4847,22 @@ CF$UID - 403 + 411 CF$UID - 404 + 412 NS.objects CF$UID - 405 + 413 CF$UID - 406 + 414 @@ -4796,11 +4880,15 @@ CF$UID - 408 + 416 CF$UID - 410 + 418 + + + CF$UID + 420 @@ -4818,7 +4906,25 @@ NS.relative CF$UID - 409 + 417 + + + file://localhost/Users/Mike/Development/Classes/MAConfirmButton/MAConfirmButton/MAConfirmButton.m + + $class + + CF$UID + 97 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 419 file://localhost/Users/Mike/Development/Classes/MAConfirmButton/MAConfirmButton/MAConfirmButton.h @@ -4836,7 +4942,7 @@ NS.relative CF$UID - 411 + 421 file://localhost/Users/Mike/Development/Classes/MAConfirmButton/Sample/SampleViewController.m @@ -4854,23 +4960,23 @@ CF$UID - 413 + 423 CF$UID - 414 + 424 CF$UID - 415 + 425 CF$UID - 416 + 426 CF$UID - 417 + 427 NS.objects @@ -4881,7 +4987,7 @@ CF$UID - 418 + 428 CF$UID @@ -4889,15 +4995,15 @@ CF$UID - 417 + 427 CF$UID - 419 + 429 CF$UID - 420 + 430 @@ -4916,7 +5022,7 @@ CF$UID - 417 + 427 @@ -4931,35 +5037,35 @@ CF$UID - 421 + 431 CF$UID - 422 + 432 CF$UID - 423 + 433 CF$UID - 424 + 434 CF$UID - 425 + 435 CF$UID - 426 + 436 CF$UID - 427 + 437 CF$UID - 428 + 438 NS.objects @@ -4974,19 +5080,19 @@ CF$UID - 429 + 439 CF$UID - 430 + 440 CF$UID - 440 + 450 CF$UID - 501 + 511 CF$UID @@ -4994,7 +5100,7 @@ CF$UID - 510 + 520 @@ -5006,7 +5112,7 @@ IDEWorkspaceTabControllerDesignAreaSplitView IDEShowUtilities IDEEditorArea - MAConfirmButton.h + MAConfirmButton.m $class @@ -5017,14 +5123,14 @@ CF$UID - 431 + 441 NS.objects CF$UID - 432 + 442 @@ -5039,11 +5145,11 @@ CF$UID - 433 + 443 CF$UID - 438 + 448 @@ -5057,22 +5163,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 436 + 446 CF$UID - 437 + 447 @@ -5090,22 +5196,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 436 + 446 CF$UID - 439 + 449 @@ -5120,46 +5226,46 @@ CF$UID - 441 + 451 CF$UID - 442 + 452 CF$UID - 443 + 453 CF$UID - 444 + 454 CF$UID - 445 + 455 NS.objects CF$UID - 446 + 456 CF$UID - 467 + 476 CF$UID - 480 + 489 CF$UID - 441 + 455 CF$UID - 484 + 493 @@ -5178,38 +5284,38 @@ CF$UID - 447 + 457 CF$UID - 448 + 458 CF$UID - 449 + 459 CF$UID - 450 + 460 CF$UID - 451 + 461 CF$UID - 452 + 462 CF$UID - 453 + 463 NS.objects CF$UID - 454 + 464 CF$UID @@ -5229,11 +5335,11 @@ CF$UID - 455 + 465 CF$UID - 461 + 470 @@ -5255,7 +5361,7 @@ CF$UID - 456 + 466 @@ -5269,24 +5375,23 @@ CF$UID - 457 + 467 CF$UID - 458 + 406 CF$UID - 459 + 468 CF$UID - 460 + 469 Sample - Sample MAConfirmButton MAConfirmButton.h @@ -5299,19 +5404,19 @@ CF$UID - 462 + 471 CF$UID - 463 + 472 CF$UID - 464 + 473 CF$UID - 465 + 474 @@ -5325,7 +5430,7 @@ CF$UID - 457 + 467 @@ -5339,7 +5444,7 @@ CF$UID - 457 + 467 CF$UID @@ -5357,15 +5462,15 @@ CF$UID - 457 + 467 CF$UID - 458 + 406 CF$UID - 459 + 468 @@ -5379,15 +5484,15 @@ CF$UID - 457 + 467 CF$UID - 458 + 406 CF$UID - 466 + 475 @@ -5402,31 +5507,31 @@ CF$UID - 468 + 477 CF$UID - 469 + 478 CF$UID - 470 + 479 CF$UID - 471 + 480 CF$UID - 472 + 481 CF$UID - 473 + 482 CF$UID - 474 + 483 NS.objects @@ -5445,11 +5550,11 @@ CF$UID - 475 + 484 CF$UID - 476 + 485 CF$UID @@ -5457,7 +5562,7 @@ CF$UID - 478 + 487 @@ -5473,7 +5578,7 @@ $class CF$UID - 477 + 486 NSRangeCount 0 @@ -5491,7 +5596,7 @@ $class CF$UID - 479 + 488 NSRangeCount 0 @@ -5516,15 +5621,15 @@ CF$UID - 481 + 490 CF$UID - 482 + 491 CF$UID - 483 + 492 NS.objects @@ -5556,43 +5661,43 @@ CF$UID - 485 + 494 CF$UID - 153 + 495 CF$UID - 486 + 496 CF$UID - 487 + 497 CF$UID - 488 + 498 CF$UID - 489 + 499 CF$UID - 490 + 500 CF$UID - 491 + 501 CF$UID - 492 + 502 CF$UID - 493 + 503 NS.objects @@ -5603,19 +5708,19 @@ CF$UID - 494 + 504 CF$UID - 495 + 505 CF$UID - 497 + 507 CF$UID - 498 + 508 CF$UID @@ -5627,7 +5732,7 @@ CF$UID - 499 + 509 CF$UID @@ -5635,11 +5740,12 @@ CF$UID - 500 + 510 IDEErrorFilteringEnabled + IDEVisibleRect IDECollapsedFiles IDEExpandedIssues IDESelectedNavigables @@ -5653,7 +5759,7 @@ $class CF$UID - 496 + 506 NS.objects @@ -5672,7 +5778,7 @@ $class CF$UID - 496 + 506 NS.objects @@ -5690,7 +5796,7 @@ $class CF$UID - 496 + 506 NS.objects @@ -5699,7 +5805,7 @@ $class CF$UID - 496 + 506 NS.objects @@ -5714,14 +5820,14 @@ CF$UID - 431 + 441 NS.objects CF$UID - 502 + 512 @@ -5735,15 +5841,15 @@ CF$UID - 503 + 513 CF$UID - 505 + 515 CF$UID - 507 + 517 @@ -5757,22 +5863,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 425 + 435 CF$UID - 504 + 514 @@ -5787,22 +5893,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 428 + 438 CF$UID - 506 + 516 @@ -5817,22 +5923,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 508 + 518 CF$UID - 509 + 519 @@ -5848,35 +5954,35 @@ CF$UID - 511 + 521 CF$UID - 512 + 522 CF$UID - 513 + 523 CF$UID - 514 + 524 CF$UID - 515 + 525 CF$UID - 516 + 526 CF$UID - 517 + 527 CF$UID - 518 + 528 NS.objects @@ -5887,11 +5993,11 @@ CF$UID - 519 + 529 CF$UID - 544 + 554 CF$UID @@ -5903,15 +6009,15 @@ CF$UID - 580 + 591 CF$UID - 588 + 599 CF$UID - 589 + 600 @@ -5933,27 +6039,27 @@ CF$UID - 520 + 530 CF$UID - 521 + 531 CF$UID - 522 + 532 CF$UID - 523 + 533 CF$UID - 524 + 534 CF$UID - 525 + 535 NS.objects @@ -5964,11 +6070,11 @@ CF$UID - 526 + 536 CF$UID - 528 + 538 CF$UID @@ -5976,11 +6082,11 @@ CF$UID - 536 + 546 CF$UID - 542 + 552 @@ -6000,7 +6106,7 @@ CF$UID - 527 + 537 NS.objects @@ -6022,14 +6128,14 @@ CF$UID - 431 + 441 NS.objects CF$UID - 529 + 539 @@ -6043,11 +6149,11 @@ CF$UID - 530 + 540 CF$UID - 533 + 543 @@ -6061,22 +6167,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 531 + 541 CF$UID - 532 + 542 @@ -6092,22 +6198,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 534 + 544 CF$UID - 535 + 545 @@ -6123,14 +6229,14 @@ CF$UID - 431 + 441 NS.objects CF$UID - 537 + 547 @@ -6144,11 +6250,11 @@ CF$UID - 538 + 548 CF$UID - 540 + 550 @@ -6162,22 +6268,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 531 + 541 CF$UID - 539 + 549 @@ -6192,22 +6298,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 534 + 544 CF$UID - 541 + 551 @@ -6222,7 +6328,7 @@ CF$UID - 543 + 553 NS.objects @@ -6244,14 +6350,14 @@ CF$UID - 545 + 555 NS.objects CF$UID - 546 + 556 @@ -6266,14 +6372,14 @@ CF$UID - 547 + 557 NS.objects CF$UID - 548 + 558 @@ -6288,22 +6394,22 @@ CF$UID - 549 + 559 CF$UID - 550 + 560 CF$UID - 551 + 561 NS.objects CF$UID - 552 + 562 CF$UID @@ -6311,7 +6417,7 @@ CF$UID - 578 + 589 @@ -6328,7 +6434,7 @@ CF$UID - 553 + 563 @@ -6342,62 +6448,62 @@ CF$UID - 554 + 564 CF$UID - 555 + 565 CF$UID - 556 + 566 CF$UID - 557 + 567 CF$UID - 558 + 568 CF$UID - 559 + 569 CF$UID - 560 + 570 NS.objects CF$UID - 561 + 571 CF$UID - 562 + 572 CF$UID - 570 + 581 CF$UID - 574 + 585 CF$UID - 460 + 575 CF$UID - 575 + 586 CF$UID - 576 + 587 @@ -6408,7 +6514,7 @@ DocumentNavigableItemName DocumentExtensionIdentifier DocumentURL - public.c-header + public.objective-c-source $class @@ -6418,7 +6524,7 @@ DocumentLocation CF$UID - 569 + 580 DomainIdentifier @@ -6428,7 +6534,7 @@ IdentifierPath CF$UID - 563 + 573 IndexOfDocumentIdentifier @@ -6446,19 +6552,19 @@ CF$UID - 564 + 574 CF$UID - 565 + 576 CF$UID - 566 + 577 CF$UID - 567 + 578 @@ -6471,9 +6577,10 @@ Identifier CF$UID - 460 + 575 + MAConfirmButton.m $class @@ -6483,7 +6590,7 @@ Identifier CF$UID - 459 + 468 @@ -6495,7 +6602,7 @@ Identifier CF$UID - 458 + 406 @@ -6507,7 +6614,7 @@ Identifier CF$UID - 568 + 579 Sample @@ -6520,7 +6627,7 @@ documentURL CF$UID - 273 + 277 timestamp @@ -6538,30 +6645,30 @@ CF$UID - 308 + 299 CF$UID - 309 + 300 CF$UID - 310 + 301 CF$UID - 311 + 302 NS.objects CF$UID - 571 + 582 CF$UID - 572 + 583 CF$UID @@ -6569,14 +6676,14 @@ CF$UID - 573 + 584 - 323762579.333408 - {0, 927} - {796, 39} - -disableWithTitle: + 323764446.94187701 + {0, 1094} + {351, 0} + @interface MAConfirmButton Xcode.IDEKit.EditorDocument.SourceCode $class @@ -6592,10 +6699,10 @@ NS.relative CF$UID - 577 + 588 - file://localhost/Users/Mike/Development/Classes/MAConfirmButton/MAConfirmButton/MAConfirmButton.h + file://localhost/Users/Mike/Development/Classes/MAConfirmButton/MAConfirmButton/MAConfirmButton.m $class @@ -6606,7 +6713,7 @@ CF$UID - 579 + 590 @@ -6621,14 +6728,14 @@ CF$UID - 431 + 441 NS.objects CF$UID - 581 + 592 @@ -6642,11 +6749,11 @@ CF$UID - 582 + 593 CF$UID - 585 + 596 @@ -6660,22 +6767,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 583 + 594 CF$UID - 584 + 595 @@ -6691,22 +6798,22 @@ CF$UID - 434 + 444 CF$UID - 435 + 445 NS.objects CF$UID - 586 + 597 CF$UID - 587 + 598 @@ -6737,12 +6844,12 @@ primaryEditorContextNode CF$UID - 590 + 601 rootLayoutTreeNode CF$UID - 598 + 609 @@ -6761,14 +6868,14 @@ documentArchivableRepresentation CF$UID - 591 + 602 orientation 0 parent CF$UID - 598 + 609 @@ -6780,7 +6887,7 @@ DocumentLocation CF$UID - 569 + 580 DomainIdentifier @@ -6790,7 +6897,7 @@ IdentifierPath CF$UID - 592 + 603 IndexOfDocumentIdentifier @@ -6808,19 +6915,19 @@ CF$UID - 593 + 604 CF$UID - 594 + 605 CF$UID - 595 + 606 CF$UID - 596 + 607 @@ -6833,7 +6940,7 @@ Identifier CF$UID - 460 + 575 @@ -6845,7 +6952,7 @@ Identifier CF$UID - 459 + 468 @@ -6857,7 +6964,7 @@ Identifier CF$UID - 458 + 406 @@ -6869,7 +6976,7 @@ Identifier CF$UID - 597 + 608 Sample @@ -6882,7 +6989,7 @@ children CF$UID - 599 + 610 contentType 0 @@ -6909,7 +7016,7 @@ CF$UID - 590 + 601