ATMHudQueueItem.m 658 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * ATMHudQueueItem.m
  3. * ATMHud
  4. *
  5. * Created by Marcel Müller on 2011-03-01.
  6. * Copyright (c) 2010-2011, Marcel Müller (atomcraft)
  7. * All rights reserved.
  8. *
  9. * https://github.com/atomton/ATMHud
  10. */
  11. #import "ATMHudQueueItem.h"
  12. @implementation ATMHudQueueItem
  13. @synthesize caption, image, showActivity, accessoryPosition, activityStyle;
  14. - (id)init {
  15. if ((self = [super init])) {
  16. caption = @"";
  17. image = nil;
  18. showActivity = NO;
  19. accessoryPosition = ATMHudAccessoryPositionBottom;
  20. activityStyle = UIActivityIndicatorViewStyleWhite;
  21. }
  22. return self;
  23. }
  24. - (void)dealloc {
  25. // [caption release];
  26. // [image release];
  27. // [super dealloc];
  28. }
  29. @end