repo_name stringlengths 6 97 | path stringlengths 3 341 | text stringlengths 8 1.02M |
|---|---|---|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/CreateReel/Persistence/RTCreateReelServerErrorMapping.h | <gh_stars>0
#import <Foundation/Foundation.h>
#import "RTServerErrorMessageToErrorCodeMapping.h"
@interface RTCreateReelServerErrorMapping : NSObject <RTServerErrorMessageToErrorCodeMapping>
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/RTAppDelegate.h | #import <UIKit/UIKit.h>
#import "RTApplicationWireframe.h"
@interface RTAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property RTApplicationWireframe *applicationWireframe;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/UploadVideo/Domain/RTUploadVideoInteractor.h | <reponame>bobby-vandiver/reeltime-ios
#import <Foundation/Foundation.h>
@protocol RTUploadVideoInteractorDelegate;
@class RTUploadVideoDataManager;
@class RTUploadVideoValidator;
@interface RTUploadVideoInteractor : NSObject
- (instancetype)initWithDelegate:(id<RTUploadVideoInteractorDelegate>)delegate
... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Model/RTActivityType.h | typedef NS_ENUM(NSInteger, RTActivityType) {
RTActivityTypeCreateReel,
RTActivityTypeJoinReelAudience,
RTActivityTypeAddVideoToReel
};
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/AccountRegistration/Domain/RTAccountRegistrationInteractorDelegate.h | <reponame>bobby-vandiver/reeltime-ios
#import <Foundation/Foundation.h>
@protocol RTAccountRegistrationInteractorDelegate <NSObject>
- (void)registrationWithAutoLoginFailedWithError:(NSError *)error;
- (void)registrationFailedWithErrors:(NSArray *)errors;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/CreateReel/Domain/RTCreateReelError.h | #import <Foundation/Foundation.h>
extern NSString *const RTCreateReelErrorDomain;
typedef NS_ENUM(NSInteger, RTCreateReelError) {
RTCreateReelErrorMissingReelName,
RTCreateReelErrorInvalidReelName,
RTCreateReelErrorReservedReelName,
RTCreateReelErrorReelNameIsUnavailable,
RTCreateReelErrorUnknownE... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Application/RTApplicationAwareWireframe.h | #import <Foundation/Foundation.h>
@class RTApplicationWireframe;
@interface RTApplicationAwareWireframe : NSObject
@property (readonly) RTApplicationWireframe *applicationWireframe;
- (instancetype)initWithApplicationWireframe:(RTApplicationWireframe *)applicationWireframe;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Model/RTActivity.h | #import <Foundation/Foundation.h>
#import "RTActivityType.h"
@class RTUser;
@class RTReel;
@class RTVideo;
@interface RTActivity : NSObject
@property (nonatomic, copy) NSNumber *type;
@property (nonatomic) RTUser *user;
@property (nonatomic) RTReel *reel;
@property (nonatomic) RTVideo *video;
+ (RTActivity *)creat... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Storyboard/RTStoryboardViewController.h | #import <Foundation/Foundation.h>
@protocol RTStoryboardViewController <NSObject>
+ (NSString *)storyboardIdentifier;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOSTests/Common/RTTestCommon.h | <filename>ReelTime-iOSTests/Common/RTTestCommon.h
#define EXP_SHORTHAND
#define MOCKITO_SHORTHAND
#define HC_SHORTHAND
#import <Specta/Specta.h>
#import <Expecta/Expecta.h>
#import <OCMockito/OCMockito.h>
#import <OCHamcrest/OCHamcrest.h>
#import "EXPMatchers+beError.h"
#import "NSError+RTError.h"
#import "EXPMatch... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/Login/Domain/RTLoginError.h | #import <Foundation/Foundation.h>
extern NSString *const RTLoginErrorDomain;
typedef NS_ENUM(NSInteger, RTLoginError) {
RTLoginErrorMissingUsername,
RTLoginErrorMissingPassword,
RTLoginErrorUnknownClient,
RTLoginErrorInvalidCredentials,
RTLoginErrorUnknownTokenError,
RTLoginErrorUnableToStoreT... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Assembly/RTSecureStoreAssembly.h | #import <Typhoon/Typhoon.h>
#import "RTSecurityAssembly.h"
@class RTOAuth2TokenStore;
@class RTClientCredentialsStore;
@class RTCurrentUserStore;
@interface RTSecureStoreAssembly : TyphoonAssembly
@property(nonatomic, strong, readonly) RTSecurityAssembly *securityAssembly;
- (RTOAuth2TokenStore *)tokenStore;
- (RT... |
bobby-vandiver/reeltime-ios | ReelTime-iOSTests/Common/RTServerErrorMessageToErrorCodeTestHelper.h | #import <Foundation/Foundation.h>
#import "RTTestCommon.h"
@class RTServerErrors;
@interface RTServerErrorMessageToErrorCodeTestHelper : NSObject
- (instancetype)initWithFailureHandler:(void (^)(RTServerErrors *serverErrors))failureHandler
errorCaptureBlock:(void (^)(MKTArgumentCaptor *errorCapt... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/AddVideoToReel/Domain/RTAddVideoToReelInteractorDelegate.h | #import <Foundation/Foundation.h>
@protocol RTAddVideoToReelInteractorDelegate <NSObject>
- (void)addVideoToReelSucceededForVideoId:(NSNumber *)videoId
reelId:(NSNumber *)reelId;
- (void)addVideoToReelFailedForVideoId:(NSNumber *)videoId
reelId:(NSNu... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/PagedList/Domain/RTPagedListError.h | <reponame>bobby-vandiver/reeltime-ios
#import <Foundation/Foundation.h>
extern NSString *const RTPagedListErrorDomain;
typedef NS_ENUM(NSInteger, RTPagedListError) {
RTPagedListErrorInvalidPageNumber
}; |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/Logout/Domain/RTLogoutInteractorDelegate.h | #import <Foundation/Foundation.h>
@protocol RTLogoutInteractorDelegate <NSObject>
- (void)logoutSucceeded;
- (void)logoutFailed;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/AddVideoToReel/Domain/RTAddVideoToReelInteractor.h | <reponame>bobby-vandiver/reeltime-ios
#import <Foundation/Foundation.h>
@protocol RTAddVideoToReelInteractorDelegate;
@class RTAddVideoToReelDataManager;
@interface RTAddVideoToReelInteractor : NSObject
- (instancetype)initWithDelegate:(id<RTAddVideoToReelInteractorDelegate>)delegate
dataManager... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/DeviceRegistration/Domain/RTDeviceRegistrationError.h | <filename>ReelTime-iOS/UseCase/DeviceRegistration/Domain/RTDeviceRegistrationError.h
#import <Foundation/Foundation.h>
extern NSString *const RTDeviceRegistrationErrorDomain;
typedef NS_ENUM(NSInteger, RTDeviceRegistrationError) {
RTDeviceRegistrationErrorMissingUsername,
RTDeviceRegistrationErrorMissingPassw... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Assembly/RTDeviceAssembly.h | #import <Typhoon/Typhoon.h>
@class RTDeviceHardware;
@class RTDeviceInformation;
@class RTThumbnailSupport;
@interface RTDeviceAssembly : TyphoonAssembly
- (RTDeviceHardware *)deviceHardware;
- (RTDeviceInformation *)deviceInformation;
- (RTThumbnailSupport *)thumbnailSupport;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/Newsfeed/Presentation/RTNewsfeedMessageSource.h | #import <Foundation/Foundation.h>
@class RTActivityMessage;
@class RTActivity;
@interface RTNewsfeedMessageSource : NSObject
- (RTActivityMessage *)messageForActivity:(RTActivity *)activity;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Client/RTOAuth2TokenRenegotiator.h | <gh_stars>0
#import <Foundation/Foundation.h>
#import "RTCallbacks.h"
@class RTAPIClient;
@class RTCurrentUserService;
@class RTLoginWireframe;
@class RTOAuth2TokenRenegotiationStatus;
@interface RTOAuth2TokenRenegotiator : NSObject
- (instancetype)initWithClient:(RTAPIClient *)client
currentUserServic... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/DeleteReel/Domain/RTDeleteReelInteractorDelegate.h | #import <Foundation/Foundation.h>
@protocol RTDeleteReelInteractorDelegate <NSObject>
- (void)deleteReelSucceededForReelId:(NSNumber *)reelId;
- (void)deleteReelFailedForReelId:(NSNumber *)reelId
withError:(NSError *)error;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Client/RTAuthenticationAwareHTTPClient.h | #import <Foundation/Foundation.h>
@class RTCurrentUserService;
@class RTOAuth2TokenRenegotiator;
@class RTAuthorizationHeaderSupport;
@class RKObjectManager;
@protocol AFMultipartFormData;
typedef void (^SuccessCallback)(id result);
typedef void (^FailureCallback)(id error);
typedef void (^MultipartFormDataBlock)(i... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/Logout/Assembly/RTLogoutAssembly.h | #import "TyphoonAssembly.h"
@class RTClientAssembly;
@class RTSecureStoreAssembly;
@class RTLoginAssembly;
@class RTAccountSettingsAssembly;
@class RTApplicationAssembly;
@class RTLogoutWireframe;
@class RTLogoutPresenter;
@class RTLogoutInteractor;
@class RTLogoutDataManager;
@interface RTLogoutAssembly : Typhoon... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/RecordVideo/Assembly/RTRecordVideoAssembly.h | #import "TyphoonAssembly.h"
@class RTCaptureThumbnailAssembly;
@class RTApplicationAssembly;
@class RTRecordVideoViewController;
@class RTRecordVideoWireframe;
@class RTRecordVideoPresenter;
@interface RTRecordVideoAssembly : TyphoonAssembly
@property (nonatomic, strong, readonly) RTCaptureThumbnailAssembly *captur... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/BrowseAudienceMembers/Presentation/RTAudienceMemberCell.h | #import <UIKit/UIKit.h>
@interface RTAudienceMemberCell : UITableViewCell
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/ManageDevices/Presentation/RTManageDevicesPresenter.h | #import "RTPagedListPresenter.h"
#import "RTPagedListPresenterDelegate.h"
#import "RTRevokeClientInteractorDelegate.h"
@protocol RTManageDevicesView;
@class RTManageDevicesWireframe;
@class RTPagedListInteractor;
@class RTRevokeClientInteractor;
@interface RTManageDevicesPresenter : RTPagedListPresenter <RTPagedList... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Validation/RTValidator.h | <gh_stars>0
#import <Foundation/Foundation.h>
@class RTPasswordValidationMapping;
@interface RTValidator : NSObject
- (BOOL)validateWithErrors:(NSArray *__autoreleasing *)errors
validationBlock:(void (^)(NSMutableArray *errorContainer))validationBlock;
- (void)validatePassword:(NSString *)password
co... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/UserProfile/Presentation/RTUserProfileViewController.h | <reponame>bobby-vandiver/reeltime-ios
#import "RTPagedListViewController.h"
#import "RTUserReelFooterViewDelegate.h"
#import "RTUserSummaryView.h"
#import "RTBrowseReelsView.h"
#import "RTFollowUserView.h"
#import "RTUnfollowUserView.h"
#import "RTJoinAudienceView.h"
#import "RTLeaveAudienceView.h"
#import "RTStory... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/BrowseReels/Persistence/RTBrowseReelsDataManagerDelegate.h | #import <Foundation/Foundation.h>
#import "RTAPIClient.h"
@protocol RTBrowseReelsDataManagerDelegate <NSObject>
- (void)listReelsPage:(NSUInteger)page
withClient:(RTAPIClient *)client
success:(ReelListCallback)success
failure:(ServerErrorsCallback)failure;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/Newsfeed/Presentation/RTActivityMessage.h | #import <Foundation/Foundation.h>
#import "RTActivityType.h"
@class RTStringWithEmbeddedLinks;
@interface RTActivityMessage : NSObject
@property (copy, readonly) NSString *text;
@property (readonly) RTActivityType type;
@property (copy, readonly) NSString *username;
@property (copy, readonly) NSNumber *reelId;
@pro... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/PlayVideo/Navigation/RTPlayVideoWireframe.h | #import "RTApplicationAwareWireframe.h"
#import "RTVideoWireframe.h"
@protocol RTPlayVideoViewControllerFactory;
@class RTApplicationWireframe;
@interface RTPlayVideoWireframe : RTApplicationAwareWireframe <RTVideoWireframe>
- (instancetype)initWithViewControllerFactory:(id<RTPlayVideoViewControllerFactory>)viewCont... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/DeviceRegistration/Domain/RTDeviceRegistrationInteractorDelegate.h | <filename>ReelTime-iOS/UseCase/DeviceRegistration/Domain/RTDeviceRegistrationInteractorDelegate.h
#import <Foundation/Foundation.h>
@protocol RTDeviceRegistrationInteractorDelegate <NSObject>
- (void)deviceRegistrationSucceeded;
- (void)deviceRegistrationFailedWithErrors:(NSArray *)errors;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/CaptureThumbnail/Navigation/RTCaptureThumbnailWireframe.h | <reponame>bobby-vandiver/reeltime-ios
#import "RTApplicationAwareWireframe.h"
@protocol RTCaptureThumbnailViewControllerFactory;
@class RTUploadVideoWireframe;
@interface RTCaptureThumbnailWireframe : RTApplicationAwareWireframe
- (instancetype)initWithViewControllerFactory:(id<RTCaptureThumbnailViewControllerFactor... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/ManageDevices/Navigation/RTManageDevicesWireframe.h | <reponame>bobby-vandiver/reeltime-ios
#import "RTApplicationAwareWireframe.h"
@class RTManageDevicesViewController;
@class RTApplicationWireframe;
@class RTLoginWireframe;
@interface RTManageDevicesWireframe : RTApplicationAwareWireframe
- (instancetype)initWithViewController:(RTManageDevicesViewController *)viewCon... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/FileSystem/RTFilePathGenerator.h | <reponame>bobby-vandiver/reeltime-ios
#import <Foundation/Foundation.h>
@interface RTFilePathGenerator : NSObject
- (instancetype)initWithFileManager:(NSFileManager *)fileManager;
- (NSString *)tempFilePath:(NSString *)fileExtension;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/UnfollowUser/Persistence/RTUnfollowUserDataManager.h | #import <Foundation/Foundation.h>
#import "RTCallbacks.h"
@class RTAPIClient;
@interface RTUnfollowUserDataManager : NSObject
- (instancetype)initWithClient:(RTAPIClient *)client;
- (void)unfollowUserWithUsername:(NSString *)username
unfollowSuccess:(NoArgsCallback)success
unfollow... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/DeleteReel/Presentation/RTDeleteReelPresenter.h | <reponame>bobby-vandiver/reeltime-ios<filename>ReelTime-iOS/UseCase/DeleteReel/Presentation/RTDeleteReelPresenter.h
#import <Foundation/Foundation.h>
#import "RTDeleteReelInteractorDelegate.h"
#import "RTErrorCodeToErrorMessagePresenterDelelgate.h"
@protocol RTDeleteReelView;
@class RTDeleteReelInteractor;
@interfac... |
bobby-vandiver/reeltime-ios | ReelTime-iOSTests/ClientTests/RTAuthenticationAwareHTTPClientSpy.h | #import "RTAuthenticationAwareHTTPClient.h"
@interface RTAuthenticationAwareHTTPClientSpy : RTAuthenticationAwareHTTPClient
@property (readonly) NSString *lastPath;
@property (readonly) NSDictionary *lastParameters;
@property (readonly, nonatomic, copy) MultipartFormDataBlock lastFormDataBlock;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/RemoveVideoFromReel/Domain/RTRemoveVideoFromReelError.h | #import <Foundation/Foundation.h>
extern NSString *const RTRemoveVideoFromReelErrorDomain;
typedef NS_ENUM(NSInteger, RTRemoveVideoFromReelError) {
RTRemoveVideoFromReelErrorVideoNotFound,
RTRemoveVideoFromReelErrorReelNotFound,
RTRemoveVideoFromReelErrorUnauthorized,
RTRemoveVideoFromReelErrorUnknown... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/CaptureThumbnail/Assembly/RTCaptureThumbnailViewControllerFactory.h | #import <Foundation/Foundation.h>
@class RTCaptureThumbnailViewController;
@protocol RTCaptureThumbnailViewControllerFactory <NSObject>
- (RTCaptureThumbnailViewController *)captureThumbnailViewControllerForVideo:(NSURL *)videoURL;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Store/RTClientCredentialsStore.h | <filename>ReelTime-iOS/Common/Store/RTClientCredentialsStore.h
#import <Foundation/Foundation.h>
#import "RTClientCredentials.h"
#import "RTKeyChainWrapper.h"
@interface RTClientCredentialsStore : NSObject
- (instancetype)initWithKeyChainWrapper:(RTKeyChainWrapper *)keyChainWrapper;
- (RTClientCredentials *)loadCli... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/DeleteVideo/Domain/RTDeleteVideoInteractor.h | <filename>ReelTime-iOS/UseCase/DeleteVideo/Domain/RTDeleteVideoInteractor.h
#import <Foundation/Foundation.h>
@protocol RTDeleteVideoInteractorDelegate;
@class RTDeleteVideoDataManager;
@interface RTDeleteVideoInteractor : NSObject
- (instancetype)initWithDelegate:(id<RTDeleteVideoInteractorDelegate>)delegate
... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Model/RTClient.h | #import <Foundation/Foundation.h>
@interface RTClient : NSObject
@property (nonatomic, copy) NSString *clientId;
@property (nonatomic, copy) NSString *clientName;
- (instancetype)initWithClientId:(NSString *)clientId
clientName:(NSString *)clientName;
- (BOOL)isEqualToClient:(RTClient *)client... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Utilities/RTStringUtils.h | #import <Foundation/Foundation.h>
extern NSString *stringForBool(BOOL aBool); |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/BrowseReels/Persistence/RTBrowseReelsDataManager.h | #import "RTPagedListDataManager.h"
@protocol RTBrowseReelsDataManagerDelegate;
@interface RTBrowseReelsDataManager : RTPagedListDataManager
- (instancetype)initWithDelegate:(id<RTBrowseReelsDataManagerDelegate>)delegate
client:(RTAPIClient *)client;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/UserSummary/Presentation/RTUserSummaryPresenter.h | #import <Foundation/Foundation.h>
#import "RTUserSummaryInteractorDelegate.h"
@protocol RTUserSummaryView;
@class RTUserSummaryInteractor;
@interface RTUserSummaryPresenter : NSObject <RTUserSummaryInteractorDelegate>
- (instancetype)initWithView:(id<RTUserSummaryView>)view
interactor:(RTUserSummar... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/Login/Navigation/RTLoginWireframe.h | <filename>ReelTime-iOS/UseCase/Login/Navigation/RTLoginWireframe.h
#import "RTApplicationAwareWireframe.h"
@class RTLoginViewController;
@class RTAccountRegistrationWireframe;
@class RTDeviceRegistrationWireframe;
@class RTResetPasswordWireframe;
@interface RTLoginWireframe : RTApplicationAwareWireframe
- (instance... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/CreateReel/Presentation/RTCreateReelPresenter.h | #import <Foundation/Foundation.h>
#import "RTCreateReelInteractorDelegate.h"
#import "RTErrorCodeToErrorMessagePresenterDelelgate.h"
@protocol RTCreateReelView;
@class RTCreateReelInteractor;
@interface RTCreateReelPresenter : NSObject <RTCreateReelInteractorDelegate, RTErrorCodeToErrorMessagePresenterDelelgate>
- ... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/DeviceRegistration/Navigation/RTDeviceRegistrationWireframe.h | #import "RTApplicationAwareWireframe.h"
@class RTDeviceRegistrationViewController;
@class RTLoginWireframe;
@interface RTDeviceRegistrationWireframe : RTApplicationAwareWireframe
- (instancetype)initWithViewController:(RTDeviceRegistrationViewController *)viewController
loginWireframe:(RTLogi... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/DeleteReel/Domain/RTDeleteReelInteractor.h | #import <Foundation/Foundation.h>
@protocol RTDeleteReelInteractorDelegate;
@class RTDeleteReelDataManager;
@interface RTDeleteReelInteractor : NSObject
- (instancetype)initWithDelegate:(id<RTDeleteReelInteractorDelegate>)delegate
dataManager:(RTDeleteReelDataManager *)dataManager;
- (void)dele... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/Login/Presentation/RTLoginViewController.h | <gh_stars>0
#import "RTKeyboardAwareFormViewController.h"
#import "RTLoginView.h"
#import "RTStoryboardViewController.h"
@class RTLoginPresenter;
@interface RTLoginViewController : RTKeyboardAwareFormViewController <RTLoginView, RTStoryboardViewController>
@property (weak, nonatomic) IBOutlet UITextField *usernameF... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/DeviceRegistration/Presentation/RTDeviceRegistrationViewController.h | #import "RTKeyboardAwareFormViewController.h"
#import "RTDeviceRegistrationView.h"
#import "RTStoryboardViewController.h"
@class RTDeviceRegistrationPresenter;
@interface RTDeviceRegistrationViewController : RTKeyboardAwareFormViewController <RTDeviceRegistrationView, RTStoryboardViewController>
@property (weak, no... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Presentation/RTKeyboardAwareFormViewController.h | #import <UIKit/UIKit.h>
// This implements the Keyboard management strategy demonsrated in Apple's documentation:
// https://developer.apple.com/library/ios/documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html
@interface RTKeyboardAwareFormViewController : UIViewCont... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Model/RTVideo.h | #import <Foundation/Foundation.h>
@class RTThumbnail;
@interface RTVideo : NSObject
@property (nonatomic, copy) NSNumber *videoId;
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) RTThumbnail *thumbnail;
- (instancetype)initWithVideoId:(NSNumber *)videoId
title:(NSS... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/ChangeDisplayName/Domain/RTChangeDisplayNameInteractor.h | <filename>ReelTime-iOS/UseCase/ChangeDisplayName/Domain/RTChangeDisplayNameInteractor.h<gh_stars>0
#import <Foundation/Foundation.h>
@protocol RTChangeDisplayNameInteractorDelegate;
@class RTChangeDisplayNameDataManager;
@interface RTChangeDisplayNameInteractor : NSObject
- (instancetype)initWithDelegate:(id<RTChang... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Assembly/RTServiceAssembly.h | <filename>ReelTime-iOS/Common/Assembly/RTServiceAssembly.h
#import <Typhoon/Typhoon.h>
@class RTSecureStoreAssembly;
@class RTCurrentUserService;
@class RTClientCredentialsService;
@interface RTServiceAssembly : TyphoonAssembly
@property (nonatomic, strong, readonly) RTSecureStoreAssembly *secureStoreAssembly;
- (... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/ResetPassword/Domain/RTResetPasswordInteractorDelegate.h | <reponame>bobby-vandiver/reeltime-ios
#import <Foundation/Foundation.h>
@protocol RTResetPasswordInteractorDelegate <NSObject>
- (void)resetPasswordEmailSent;
- (void)resetPasswordEmailFailedWithErrors:(NSArray *)errors;
- (void)resetPasswordSucceeded;
- (void)resetPasswordFailedWithErrors:(NSArray *)errors;
@end... |
bobby-vandiver/reeltime-ios | ReelTime-iOSTests/Common/RTTestCallbacks.h | <filename>ReelTime-iOSTests/Common/RTTestCallbacks.h
typedef BOOL (^ValidationCallback)(NSDictionary *parameters, NSArray *__autoreleasing *errors);
typedef NSError * (^ErrorFactoryCallback)(NSInteger errorCode);
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/BrowseAudienceMembers/Assembly/RTBrowseAudienceMembersAssembly.h | #import "TyphoonAssembly.h"
#import "RTBrowseAudienceMembersViewControllerFactory.h"
@class RTApplicationAssembly;
@class RTClientAssembly;
@class RTUserProfileAssembly;
@class RTBrowseAudienceMembersWireframe;
@class RTBrowseAudienceMembersViewController;
@class RTBrowseAudienceMembersDataManagerDelegate;
@class RT... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/CaptureThumbnail/Presentation/RTCaptureThumbnailPresenter.h | <gh_stars>0
#import <Foundation/Foundation.h>
@class RTCaptureThumbnailWireframe;
@interface RTCaptureThumbnailPresenter : NSObject
- (instancetype)initWithWireframe:(RTCaptureThumbnailWireframe *)wireframe;
- (void)capturedThumbnail:(NSURL *)thumbnailURL
forVideo:(NSURL *)videoURL;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/UnfollowUser/Domain/RTUnfollowUserInteractor.h | <reponame>bobby-vandiver/reeltime-ios
#import <Foundation/Foundation.h>
@protocol RTUnfollowUserInteractorDelegate;
@class RTUnfollowUserDataManager;
@interface RTUnfollowUserInteractor : NSObject
- (instancetype)initWithDelegate:(id<RTUnfollowUserInteractorDelegate>)delegate
dataManager:(RTUnfo... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/UserProfile/Assembly/RTBrowseReelVideosPresenterFactory.h | <filename>ReelTime-iOS/UseCase/UserProfile/Assembly/RTBrowseReelVideosPresenterFactory.h
#import <Foundation/Foundation.h>
@class RTBrowseVideosPresenter;
@protocol RTBrowseVideosView;
@protocol RTVideoWireframe;
@protocol RTBrowseReelVideosPresenterFactory <NSObject>
- (RTBrowseVideosPresenter *)browseReelVideosPre... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/ChangePassword/Domain/RTChangePasswordError.h | <filename>ReelTime-iOS/UseCase/ChangePassword/Domain/RTChangePasswordError.h
#import <Foundation/Foundation.h>
extern NSString *const RTChangePasswordErrorDomain;
typedef NS_ENUM(NSInteger, RTChangePasswordError) {
RTChangePasswordErrorMissingPassword,
RTChangePasswordErrorMissingConfirmationPassword,
RTC... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Assembly/RTClientAssembly.h | #import <Typhoon/Typhoon.h>
@class RTSecureStoreAssembly;
@class RTServiceAssembly;
@class RTCommonComponentsAssembly;
@class RTLoginAssembly;
@class RTAPIClient;
@class RTAuthenticationAwareHTTPClient;
@class RTAuthorizationHeaderSupport;
@class RTOAuth2TokenRenegotiator;
@class RTOAuth2TokenRenegotiationStatus;
... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/ConfirmAccount/Persistence/RTConfirmAccountDataManager.h | <filename>ReelTime-iOS/UseCase/ConfirmAccount/Persistence/RTConfirmAccountDataManager.h
#import <Foundation/Foundation.h>
#import "RTCallbacks.h"
@class RTAPIClient;
@interface RTConfirmAccountDataManager : NSObject
- (instancetype)initWithClient:(RTAPIClient *)client;
- (void)submitRequestForConfirmationEmailWithE... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/PlayVideo/Domain/RTPlayVideoNotification.h | #import <Foundation/Foundation.h>
extern NSString *const RTPlayVideoNotificationReloadVideo;
extern NSString *const RTPlayVideoNotificationVideoNotFound;
extern NSString *const RTPlayVideoNotificationVideoIdKey;
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/AccountRegistration/Presentation/RTAccountRegistrationPresenter.h | #import <Foundation/Foundation.h>
#import "RTAccountRegistrationInteractorDelegate.h"
#import "RTLoginInteractorDelegate.h"
#import "RTErrorCodeToErrorMessagePresenterDelelgate.h"
@protocol RTAccountRegistrationView;
@class RTAccountRegistrationInteractor;
@class RTAccountRegistrationWireframe;
@class RTAccountRegis... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/UserProfile/Presentation/RTUserReelHeaderView.h | #import <UIKit/UIKit.h>
@interface RTUserReelHeaderView : UITableViewHeaderFooterView
@property (weak, nonatomic) IBOutlet UILabel *reelNameLabel;
@property (weak, nonatomic) IBOutlet UILabel *videoCountLabel;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/RemoveAccount/Navigation/RTRemoveAccountWireframe.h | #import "RTApplicationAwareWireframe.h"
@class RTRemoveAccountViewController;
@interface RTRemoveAccountWireframe : RTApplicationAwareWireframe
- (instancetype)initWithViewController:(RTRemoveAccountViewController *)viewController
applicationWireframe:(RTApplicationWireframe *)applicationWireframe;... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/DeviceRegistration/Assembly/RTDeviceRegistrationAssembly.h | <filename>ReelTime-iOS/UseCase/DeviceRegistration/Assembly/RTDeviceRegistrationAssembly.h
#import <Typhoon/Typhoon.h>
@class RTClientAssembly;
@class RTSecureStoreAssembly;
@class RTLoginAssembly;
@class RTApplicationAssembly;
@class RTDeviceRegistrationWireframe;
@class RTDeviceRegistrationViewController;
@class RT... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Client/RTClientAdditionalConfiguration.h | #import <Foundation/Foundation.h>
@interface RTClientAdditionalConfiguration : NSObject
+ (void)registerEmptyResponseSupport;
+ (void)registerPNGResponseSupport;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/AddVideoToReel/Domain/RTAddVideoToReelError.h | #import <Foundation/Foundation.h>
extern NSString *const RTAddVideoToReelErrorDomain;
typedef NS_ENUM(NSInteger, RTAddVideoToReelError) {
RTAddVideoToReelErrorReelNotFound,
RTAddVideoToReelErrorVideoNotFound,
RTAddVideoToReelErrorUnauthorized,
RTAddVideoToReelErrorUnknownError
};
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/LeaveAudience/Persistence/RTLeaveAudienceDataManager.h | <gh_stars>0
#import <Foundation/Foundation.h>
#import "RTCallbacks.h"
@class RTAPIClient;
@interface RTLeaveAudienceDataManager : NSObject
- (instancetype)initWithClient:(RTAPIClient *)client;
- (void)requestAudienceLeaveForReelId:(NSNumber *)reelId
leaveSuccess:(NoArgsCallback)leaveSuccess... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/BrowseVideos/Presentation/RTBrowseVideosPresenter.h | #import "RTPagedListPresenter.h"
#import "RTPagedListPresenterDelegate.h"
@protocol RTBrowseVideosView;
@protocol RTVideoWireframe;
@class RTPagedListInteractor;
@interface RTBrowseVideosPresenter : RTPagedListPresenter <RTPagedListPresenterDelegate>
- (instancetype)initWithView:(id<RTBrowseVideosView>)view
... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/BrowseAudienceMembers/Navigation/RTBrowseAudienceMembersWireframe.h | <reponame>bobby-vandiver/reeltime-ios
#import "RTApplicationAwareWireframe.h"
#import "RTUserWireframe.h"
@protocol RTBrowseAudienceMembersViewControllerFactory;
@class RTUserProfileWireframe;
@class RTApplicationWireframe;
@interface RTBrowseAudienceMembersWireframe : RTApplicationAwareWireframe <RTUserWireframe>
-... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Client/RTRestAPI.h | <reponame>bobby-vandiver/reeltime-ios<filename>ReelTime-iOS/Common/Client/RTRestAPI.h
#import <Foundation/Foundation.h>
extern NSString *const API_TOKEN;
extern NSString *const API_REGISTER_ACCOUNT;
extern NSString *const API_REMOVE_ACCOUNT;
extern NSString *const API_LIST_CLIENTS;
extern NSString *const API_REGISTE... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/FollowUser/Domain/RTFollowUserInteractorDelegate.h | <gh_stars>0
#import <Foundation/Foundation.h>
@protocol RTFollowUserInteractorDelegate <NSObject>
- (void)followUserSucceededForUsername:(NSString *)username;
- (void)followUserFailedForUsername:(NSString *)username
withError:(NSError *)error;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/AccountSettings/Navigation/RTAccountSettingsWireframe.h | <gh_stars>0
#import "RTApplicationAwareWireframe.h"
@class RTAccountSettingsViewController;
@class RTChangeDisplayNameWireframe;
@class RTChangePasswordWireframe;
@class RTConfirmAccountWireframe;
@class RTManageDevicesWireframe;
@class RTRemoveAccountWireframe;
@interface RTAccountSettingsWireframe : RTApplicationA... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/Logout/Presentation/RTLogoutPresenter.h | #import <Foundation/Foundation.h>
#import "RTLogoutInteractorDelegate.h"
@protocol RTLogoutView;
@class RTLogoutInteractor;
@class RTLogoutWireframe;
@interface RTLogoutPresenter : NSObject <RTLogoutInteractorDelegate>
- (instancetype)initWithView:(id<RTLogoutView>)view
interactor:(RTLogoutInteract... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/FollowUser/Domain/RTFollowUserError.h | <gh_stars>0
#import <Foundation/Foundation.h>
extern NSString *const RTFollowUserErrorDomain;
typedef NS_ENUM(NSInteger, RTFollowUserError) {
RTFollowUserErrorUserNotFound,
RTFollowUserErrorUnknownError
};
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/ConfirmAccount/Domain/RTConfirmAccountError.h | #import <Foundation/Foundation.h>
extern NSString *const RTConfirmAccountErrorDomain;
typedef NS_ENUM(NSInteger, RTConfirmAccountError) {
RTConfirmAccountErrorMissingConfirmationCode,
RTConfirmAccountErrorInvalidConfirmationCode,
RTConfirmAccountErrorEmailFailure,
RTConfirmAccountErrorUnknownError
}; |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/BrowseAll/Presentation/RTBrowseAllViewDataSourceFactory.h | #import <Foundation/Foundation.h>
@class RTMutableArrayDataSource;
@interface RTBrowseAllViewDataSourceFactory : NSObject
+ (RTMutableArrayDataSource *)usersDataSource;
+ (RTMutableArrayDataSource *)reelsDataSource;
+ (RTMutableArrayDataSource *)videosDataSource;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/AddVideoToReel/Persistence/RTAddVideoToReelDataManager.h | #import <Foundation/Foundation.h>
#import "RTCallbacks.h"
@class RTAPIClient;
@interface RTAddVideoToReelDataManager : NSObject
- (instancetype)initWithClient:(RTAPIClient *)client;
- (void)addVideoForVideoId:(NSUInteger)videoId
toReelForReelId:(NSUInteger)reelId
success:(NoArgsCallbac... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/UnfollowUser/Presentation/RTUnfollowUserPresenter.h | #import <Foundation/Foundation.h>
#import "RTUnfollowUserInteractorDelegate.h"
#import "RTErrorCodeToErrorMessagePresenterDelelgate.h"
@protocol RTUnfollowUserView;
@class RTUnfollowUserInteractor;
@interface RTUnfollowUserPresenter : NSObject <RTUnfollowUserInteractorDelegate, RTErrorCodeToErrorMessagePresenterDele... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/RecordVideo/Presentation/RTRecordVideoPresenter.h | <filename>ReelTime-iOS/UseCase/RecordVideo/Presentation/RTRecordVideoPresenter.h
#import <Foundation/Foundation.h>
@class RTRecordVideoWireframe;
@interface RTRecordVideoPresenter : NSObject
- (instancetype)initWithWireframe:(RTRecordVideoWireframe *)wireframe;
- (void)recordedVideo:(NSURL *)videoURL;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/PlayVideo/Presentation/AVURLAsset+HTTPHeaderFieldsKey.h | <gh_stars>0
#import <AVFoundation/AVFoundation.h>
extern NSString *const AVURLAssetHTTPHeaderFieldsKey; |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/RecordVideo/Presentation/RTRecordVideoPreviewView.h | #import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
@interface RTRecordVideoPreviewView : UIView
@property (nonatomic) AVCaptureSession *session;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/ConfirmAccount/Presentation/RTConfirmAccountViewController.h | #import "RTKeyboardAwareFormViewController.h"
#import "RTConfirmAccountView.h"
#import "RTStoryboardViewController.h"
@class RTConfirmAccountPresenter;
@interface RTConfirmAccountViewController : RTKeyboardAwareFormViewController <RTConfirmAccountView, RTStoryboardViewController>
@property (weak, nonatomic) IBOutle... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Validation/RTRegexPattern.h | <filename>ReelTime-iOS/Common/Validation/RTRegexPattern.h
#import <Foundation/Foundation.h>
extern const NSInteger PASSWORD_MINIMUM_LENGTH;
extern NSString *const USERNAME_PATTERN;
extern NSString *const EMAIL_REGEX;
extern NSString *const DISPLAY_NAME_REGEX; |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/PlayVideo/Presentation/RTPlayerView.h | #import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
// Based on the example PlayerView class provided in Apple's documentation:
// https://developer.apple.com/library/ios/documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/02_Playback.html
@interface RTPlayerView : UIView
@property (nonatomic) AVPl... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Device/RTThumbnailSupport.h | <reponame>bobby-vandiver/reeltime-ios
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@class RTDeviceInformation;
typedef NS_ENUM(NSInteger, RTThumbnailResolution) {
RTThumbnailResolution1X,
RTThumbnailResolution2X,
RTThumbnailResolution3X
};
@interface RTThumbnailSupport : NSObject
- (instanc... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Store/RTCurrentUserStore.h | <filename>ReelTime-iOS/Common/Store/RTCurrentUserStore.h
#import <Foundation/Foundation.h>
#import "RTKeyChainWrapper.h"
@interface RTCurrentUserStore : NSObject
- (instancetype)initWithKeyChainWrapper:(RTKeyChainWrapper *)keyChainWrapper;
- (NSString *)loadCurrentUsernameWithError:(NSError *__autoreleasing *)error... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/Newsfeed/Assembly/RTNewsfeedAssembly.h | #import <Typhoon/Typhoon.h>
@class RTClientAssembly;
@class RTNewsfeedWireframe;
@class RTNewsfeedViewController;
@class RTNewsfeedPresenter;
@class RTNewsfeedMessageSource;
@class RTPagedListInteractor;
@class RTNewsfeedDataManager;
@interface RTNewsfeedAssembly : TyphoonAssembly
@property (nonatomic, strong, read... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/BrowseAll/Persistence/RTBrowseAllUsersDataManagerDelegate.h | <gh_stars>0
#import <Foundation/Foundation.h>
#import "RTBrowseUsersDataManagerDelegate.h"
@interface RTBrowseAllUsersDataManagerDelegate : NSObject <RTBrowseUsersDataManagerDelegate>
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Concurrency/RTCountDownLatch.h | #import <Foundation/Foundation.h>
@interface RTCountDownLatch : NSObject
@property (readonly) NSUInteger count;
- (instancetype)initWithCount:(NSUInteger)count;
- (void)countDown;
- (void)awaitExecutionOnQueue:(dispatch_queue_t)queue
withCallback:(void (^)())callback;
@end
|
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Security/RTKeyChainError.h | <filename>ReelTime-iOS/Common/Security/RTKeyChainError.h
#import <Foundation/Foundation.h>
extern NSString *const RTKeyChainWrapperErrorDomain;
typedef NS_ENUM(NSInteger, RTKeyChainError) {
RTKeyChainErrorMissingKey,
RTKeyChainErrorItemNotFound,
RTKeyChainErrorDuplicateItem,
RTKeyChainErrorUnknown
}; |
bobby-vandiver/reeltime-ios | ReelTime-iOS/Common/Presentation/RTClientDescription.h | #import <Foundation/Foundation.h>
@interface RTClientDescription : NSObject
@property (readonly, copy) NSString *clientId;
@property (readonly, copy) NSString *clientName;
+ (RTClientDescription *)clientDescriptionWithClientId:(NSString *)clientId
clientName:(NSString *)cl... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/DeviceRegistration/Domain/RTDeviceRegistrationInteractor.h | #import <Foundation/Foundation.h>
#import "RTDeviceRegistrationDataManagerDelegate.h"
@protocol RTDeviceRegistrationInteractorDelegate;
@class RTDeviceRegistrationDataManager;
@interface RTDeviceRegistrationInteractor : NSObject <RTDeviceRegistrationDataManagerDelegate>
- (instancetype)initWithDelegate:(id<RTDeviceR... |
bobby-vandiver/reeltime-ios | ReelTime-iOS/UseCase/CreateReel/Domain/RTCreateReelInteractorDelegate.h | #import <Foundation/Foundation.h>
@protocol RTCreateReelInteractorDelegate <NSObject>
- (void)createReelSucceededForName:(NSString *)name;
- (void)createReelFailedForName:(NSString *)name
withError:(NSError *)error;
@end
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.