diff --git a/Podfile.lock b/Podfile.lock
index e7fb006cfc9034a0185949ebe434a5bf207d1351..916398c32ab248f00e5b30069cc6a1f86083d489 100644
--- a/Podfile.lock
+++ b/Podfile.lock
@@ -27,4 +27,4 @@ SPEC CHECKSUMS:
 
 PODFILE CHECKSUM: 4991d462e1331cd4544d402d5e14432ef470f0f9
 
-COCOAPODS: 1.1.1
+COCOAPODS: 1.0.1
diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock
index e7fb006cfc9034a0185949ebe434a5bf207d1351..916398c32ab248f00e5b30069cc6a1f86083d489 100644
--- a/Pods/Manifest.lock
+++ b/Pods/Manifest.lock
@@ -27,4 +27,4 @@ SPEC CHECKSUMS:
 
 PODFILE CHECKSUM: 4991d462e1331cd4544d402d5e14432ef470f0f9
 
-COCOAPODS: 1.1.1
+COCOAPODS: 1.0.1
diff --git a/Pods/Onboard/Source/OnboardingContentViewController.h b/Pods/Onboard/Source/OnboardingContentViewController.h
index fb4153924a2a1399c9c03b0cca2548862bf6ffb6..f0d7aeb65bbeb36fccb4cb6ef62ea1f8d3beedee 100644
--- a/Pods/Onboard/Source/OnboardingContentViewController.h
+++ b/Pods/Onboard/Source/OnboardingContentViewController.h
@@ -171,7 +171,7 @@ NS_ASSUME_NONNULL_END
  * @brief Convenience class initializer for creating an onboarding content view controller with a video.
  * @return An instance of OnboardingViewController with the provided information.
  */
-+ (nonnull instancetype)contentWithTitle:(nullable NSString *)title body:(nullable NSString *)body videoURL:(nullable NSURL *)videoURL inputView:(UIView *)inputView buttonText:(nullable NSString *)buttonText action:(nullable dispatch_block_t)action;
++ (nonnull instancetype)contentWithTitle:(nullable NSString *)title body:(nullable NSString *)body videoURL:(nullable NSURL *)videoURL inputView:(UIView *)inputView buttonText:(nullable NSString *)buttonText actionBlock:(nullable dispatch_block_t)actionBlock;
 
 
 /**
@@ -201,7 +201,7 @@ NS_ASSUME_NONNULL_END
  */
 - (nonnull instancetype)initWithTitle:(nullable NSString *)title body:(nullable NSString *)body image:(nullable UIImage *)image videoURL:(nullable NSURL *)videoURL buttonText:(nullable NSString *)buttonText actionBlock:(nullable action_callback)actionBlock;
 
-- (nonnull instancetype)initWithTitle:(nullable NSString *)title body:(nullable NSString *)body image:(nullable UIImage *)image videoURL:(nullable NSURL *)videoURL inputView:(nullable UIView *)inputView buttonText:(nullable NSString *)buttonText actionBlock:(nullable action_callback)actionBlock;
+- (nonnull instancetype)initWithTitle:(nullable NSString *)title body:(nullable NSString *)body image:(nullable UIImage *)image videoURL:(nullable NSURL *)videoURL inputView:(nullable UIView *)inputView buttonText:(nullable NSString *)buttonText actionBlock:(nullable dispatch_block_t)actionBlock;
 
 /**
  * @brief Method used to update the alpha value for all floating subviews (image, title, body, etc.)
diff --git a/Pods/Onboard/Source/OnboardingContentViewController.m b/Pods/Onboard/Source/OnboardingContentViewController.m
index c6da2fbb3bf318934eb0782daafc743062b21d25..6abb88e0b12eaa074a8759ef7f2398bc1a1eacb6 100644
--- a/Pods/Onboard/Source/OnboardingContentViewController.m
+++ b/Pods/Onboard/Source/OnboardingContentViewController.m
@@ -71,8 +71,8 @@ NSString * const kOnboardInputViewAccessibilityIdentifier = @"OnboardInputViewAc
     return [[self alloc] initWithTitle:title body:body videoURL:videoURL buttonText:buttonText action:action];
 }
 
-+ (instancetype)contentWithTitle:(NSString *)title body:(NSString *)body videoURL:(NSURL *)videoURL inputView:(UIView *)inputView buttonText:(NSString *)buttonText action:(dispatch_block_t)action {
-    return [[self alloc] initWithTitle:title body:body videoURL:videoURL buttonText:buttonText action:action];
++ (instancetype)contentWithTitle:(NSString *)title body:(NSString *)body videoURL:(NSURL *)videoURL inputView:(UIView *)inputView buttonText:(NSString *)buttonText actionBlock:(action_callback)actionBlock {
+    return [[self alloc] initWithTitle:title body:body image:nil videoURL:videoURL inputView:inputView buttonText:buttonText actionBlock:actionBlock];
 }
 
 - (instancetype)initWithTitle:(NSString *)title body:(NSString *)body videoURL:(NSURL *)videoURL  buttonText:(NSString *)buttonText action:(dispatch_block_t)action {
diff --git a/enzevalos_iphone.xcworkspace/xcuserdata/jakobsbode.xcuserdatad/UserInterfaceState.xcuserstate b/enzevalos_iphone.xcworkspace/xcuserdata/jakobsbode.xcuserdatad/UserInterfaceState.xcuserstate
index 9262408ad3efd899b17b614ee010008361a7b465..97d6e94fcb92e2e8387c245c349b472fc3281457 100644
Binary files a/enzevalos_iphone.xcworkspace/xcuserdata/jakobsbode.xcuserdatad/UserInterfaceState.xcuserstate and b/enzevalos_iphone.xcworkspace/xcuserdata/jakobsbode.xcuserdatad/UserInterfaceState.xcuserstate differ