├── LICENSE ├── Icon ├── candpiosapp ├── en.lproj │ └── InfoPlist.strings ├── Icon │ ├── Icon.png │ ├── Default.png │ ├── Icon@2x.png │ ├── Default@2x.png │ ├── Icon-Small.png │ └── Icon-Small@2x.png ├── LeagueGothic.otf ├── Feed │ ├── images │ │ ├── love-sent.png │ │ ├── hide-element.png │ │ ├── love-bubble.png │ │ ├── love-sent@2x.png │ │ ├── hide-element@2x.png │ │ ├── love-bubble@2x.png │ │ ├── user-image-mask.png │ │ ├── plus-love-button.png │ │ ├── plus-love-button@2x.png │ │ ├── user-image-mask@2x.png │ │ ├── list-arrow-big-light-grey.png │ │ ├── pill-button-plus1-comment.png │ │ ├── venue-feed-bg-container-top.png │ │ ├── list-arrow-big-light-grey@2x.png │ │ ├── pill-button-plus1-comment@2x.png │ │ ├── venue-feed-bg-container-bottom.png │ │ ├── venue-feed-bg-container-middle.png │ │ ├── venue-feed-bg-container-top@2x.png │ │ ├── venue-feed-bg-container-bottom@2x.png │ │ └── venue-feed-bg-container-middle@2x.png │ ├── cells │ │ ├── PostUpdateCell.m │ │ ├── PostLoveCell.h │ │ ├── NewPostCell.h │ │ ├── PostUpdateCell.h │ │ ├── PostLoveCell.m │ │ ├── FeedPreviewHeaderCell.h │ │ ├── PostBaseCell.h │ │ ├── NewPostCell.m │ │ └── FeedPreviewHeaderCell.m │ ├── FeedVenuesTableViewController.h │ ├── CPVenueFeed.h │ ├── FeedViewController.h │ └── CPPost.h ├── Map │ ├── images │ │ ├── map-locate.png │ │ ├── map-refresh.png │ │ ├── map-shadow.png │ │ ├── pin-frame.png │ │ ├── pin-solar.png │ │ ├── pin_small.png │ │ ├── places-icon.png │ │ ├── map-locate@2x.png │ │ ├── map-shadow@2x.png │ │ ├── pin-checkedin.png │ │ ├── pin-solar@2x.png │ │ ├── map-refresh@2x.png │ │ ├── pin-checkedin@2x.png │ │ ├── pin-checkedout.png │ │ ├── places-icon@2x.png │ │ ├── map-marker~iphone.png │ │ ├── people-place-list.png │ │ ├── pin-checkedout@2x.png │ │ ├── map-marker@2x~iphone.png │ │ ├── people-place-list@2x.png │ │ ├── pin-virtual-checkedin.png │ │ ├── map-refresh-progress-arrow.png │ │ ├── pin-virtual-checkedin@2x.png │ │ ├── map-refresh-progress-arrow@2x.png │ │ ├── people-marker-turquoise-circle.png │ │ └── people-marker-turquoise-circle@2x.png │ └── MapDataSet.h ├── User │ ├── images │ │ ├── go-menu-bg.png │ │ ├── send-love.png │ │ ├── thumbs-up.png │ │ ├── props-thumb.png │ │ ├── send-love@2x.png │ │ ├── thumbs-down.png │ │ ├── thumbs-up@2x.png │ │ ├── exchange-cards.png │ │ ├── go-menu-bg@2x.png │ │ ├── props-thumb@2x.png │ │ ├── thumbs-down@2x.png │ │ ├── exchange-cards@2x.png │ │ ├── go-button~iphone.png │ │ ├── go-menu-button-2.png │ │ ├── go-menu-button-3.png │ │ ├── default-avatar-256.png │ │ ├── go-button@2x~iphone.png │ │ ├── go-menu-button-2@2x.png │ │ ├── go-menu-button-3@2x.png │ │ ├── go-menu-button-minus.png │ │ ├── person-login-to-view.png │ │ ├── send-love-small@2x.png │ │ ├── default-avatar-256@2x.png │ │ ├── network-icon-facebook.png │ │ ├── network-icon-linkedin.png │ │ ├── others-at-venue~iphone.png │ │ ├── available-for-icon~iphone.png │ │ ├── go-menu-button-minus@2x.png │ │ ├── network-icon-facebook@2x.png │ │ ├── network-icon-linkedin@2x.png │ │ ├── others-at-venue@2x~iphone.png │ │ ├── person-login-to-view@2x.png │ │ ├── checked-in-location~iphone.png │ │ ├── available-for-icon@2x~iphone.png │ │ └── checked-in-location@2x~iphone.png │ ├── sounds │ │ ├── send-love-switch-sound-on.wav │ │ └── send-love-switch-sound-off.wav │ ├── LoveSkillTableViewCell.h │ ├── UserProfileLinkedInViewController.h │ ├── UserProfileViewController.h │ ├── UserListTableViewController.h │ ├── UserTableViewCell.h │ ├── UserLoveViewController.h │ └── UserTableViewCell.m ├── Payment │ ├── images │ │ ├── add-funds.png │ │ ├── add-funds@2x.png │ │ ├── vector-lock.png │ │ ├── wallet-lock.png │ │ ├── vector-lock@2x.png │ │ ├── wallet-lock@2x.png │ │ ├── wallet-cell-arrow-down.png │ │ └── wallet-cell-arrow-down@2x.png │ ├── PaymentHelper.h │ ├── AddFundsViewController.h │ ├── WalletCell.h │ ├── PaymentHelper.m │ ├── PayUserViewController.h │ └── BalanceViewController.h ├── Utils │ ├── images │ │ ├── common │ │ │ ├── logo.png │ │ │ ├── bullet.png │ │ │ ├── logo@2x.png │ │ │ ├── bullet@2x.png │ │ │ ├── checkbox-checked.png │ │ │ ├── expand-arrow-down.png │ │ │ ├── checkbox-checked@2x.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── refresh-scroll-view.png │ │ │ ├── checkbox-unchecked@2x.png │ │ │ ├── expand-arrow-down@2x.png │ │ │ └── refresh-scroll-view@2x.png │ │ ├── textures │ │ │ ├── header.png │ │ │ ├── header@2x.png │ │ │ ├── header-shadow.png │ │ │ ├── menu-background.png │ │ │ ├── paper-texture.jpg │ │ │ ├── perforated-skin.png │ │ │ ├── secret-society.png │ │ │ ├── cell-shadow-harsh.png │ │ │ ├── header-shadow@2x.png │ │ │ ├── secret-society@2x.png │ │ │ ├── cell-shadow-harsh@2x.png │ │ │ ├── perforated-skin@2x.png │ │ │ ├── menu-header-background.png │ │ │ ├── texture-diagonal-noise.png │ │ │ ├── texture-first-aid-kit.png │ │ │ ├── menu-header-background@2x.png │ │ │ ├── selected-menu-background.png │ │ │ ├── texture-diagonal-noise@2x.png │ │ │ ├── texture-first-aid-kit@2x.png │ │ │ ├── texture-lightpaperfibers.png │ │ │ ├── texture-diagonal-noise-dark.png │ │ │ ├── texture-lightpaperfibers@2x.png │ │ │ ├── texture-diagonal-noise-dark@2x.png │ │ │ ├── texture-diagonal-noise-light.png │ │ │ └── texture-diagonal-noise-light@2x.png │ │ └── buttons │ │ │ ├── back-button.png │ │ │ ├── button-grey.png │ │ │ ├── header-button.png │ │ │ ├── back-button@2x.png │ │ │ ├── button-grey@2x.png │ │ │ ├── button-turquoise.png │ │ │ ├── divider-button.png │ │ │ ├── header-button@2x.png │ │ │ ├── divider-button@2x.png │ │ │ ├── button-turquoise-32pt.png │ │ │ ├── button-turquoise@2x.png │ │ │ └── button-turquoise-32pt@2x.png │ ├── UIImage+ImageBlur.h │ ├── CPAlertView.m │ ├── UIViewController+isModal.h │ ├── UIColor+EasyRGB.h │ ├── UIColor+EasyRGB.m │ ├── CPLinkedInAPI.h │ ├── CPUtils.h │ ├── FoursquareAPIRequest.h │ ├── CPAlertView.h │ ├── CPConstants.h │ └── Settings.h ├── Venue │ ├── images │ │ ├── place-phone.png │ │ ├── places-icon.png │ │ ├── place-location.png │ │ ├── place-phone@2x.png │ │ ├── places-icon@2x.png │ │ ├── picture-coming-soon.jpg │ │ ├── place-location@2x.png │ │ ├── list-arrow-dark-grey.png │ │ ├── list-arrow-dark-grey@2x.png │ │ ├── picture-coming-soon@2x.jpg │ │ ├── picture-coming-soon-rectangle.jpg │ │ └── picture-coming-soon-rectangle@2x.jpg │ ├── VenueViewToggleViewController.h │ ├── VenueListTableViewController.h │ ├── VenueCell.h │ └── VenueInfoViewController.h ├── Checkin │ ├── images │ │ ├── check-in-big.png │ │ ├── tab-check-in.png │ │ ├── tab-check-out.png │ │ ├── check-in-big@2x.png │ │ ├── tab-check-in@2x.png │ │ ├── tab-check-out@2x.png │ │ ├── check-in-slider-handle.png │ │ ├── check-in-status-arrow.png │ │ ├── check-in-status-arrow@2x.png │ │ ├── tab-check-in-clock-hand.png │ │ ├── check-in-slider-handle@2x.png │ │ ├── tab-check-in-clock-hand@2x.png │ │ ├── check-in-slider-grooves-dark.png │ │ ├── check-in-slider-grooves-light.png │ │ ├── check-in-slider-grooves-dark@2x.png │ │ └── check-in-slider-grooves-light@2x.png │ ├── CheckInDetailsFrame.h │ ├── CheckInListCell.h │ ├── UIButton+AnimatedClockHand.h │ ├── CheckInListTableViewController.h │ ├── CheckInDetailsViewController.h │ ├── CheckInListCell.m │ └── CPCheckinHandler.h ├── Settings │ ├── images │ │ ├── drop-down.png │ │ ├── plug-logo.png │ │ ├── toggle-off.png │ │ ├── toggle-on.png │ │ ├── drop-down@2x.png │ │ ├── plug-logo@2x.png │ │ ├── toggle-off@2x.png │ │ ├── toggle-on@2x.png │ │ ├── linkedin-invite.png │ │ ├── linkedin-invite@2x.png │ │ ├── settings-button-3.png │ │ ├── settings-button-3@2x.png │ │ ├── invite-code-background.png │ │ └── invite-code-background@2x.png │ ├── SupportTableViewController.h │ ├── TermsOfServiceViewController.h │ ├── ResumeVisibilityViewController.h │ ├── ProfileViewController.h │ ├── JobCategoryViewController.h │ ├── Invite │ │ ├── GenerateInvitationCodeViewController.h │ │ ├── InviteLinkedInConnectionsTableViewController.h │ │ ├── LinkedInConnectionCell.m │ │ ├── EditLinkedInInvitationMessageViewController.h │ │ └── LinkedInConnectionCell.h │ ├── ProfileNotificationsViewController.h │ ├── LinkedAccountsTableViewController.h │ ├── SkillsTableViewController.h │ ├── AutoCheckinTableViewController.h │ ├── PushModalViewControllerFromLeftSegue.h │ ├── AutoCheckinCell.h │ └── AutoCheckinCell.m ├── Navigation │ ├── images │ │ ├── thin-nav-bg.png │ │ ├── thin-nav-bg@2x.png │ │ ├── icons │ │ │ ├── tab-login.png │ │ │ ├── tab-people.png │ │ │ ├── tab-venues.png │ │ │ ├── tab-contacts.png │ │ │ ├── tab-logbook.png │ │ │ ├── tab-login@2x.png │ │ │ ├── tab-people@2x.png │ │ │ ├── tab-venues@2x.png │ │ │ ├── tab-contacts@2x.png │ │ │ └── tab-logbook@2x.png │ │ └── action-menu │ │ │ ├── action-menu-bg.png │ │ │ ├── action-menu-bg@2x.png │ │ │ ├── action-menu-button-base.png │ │ │ ├── action-menu-button-love.png │ │ │ ├── action-menu-button-minus.png │ │ │ ├── action-menu-button-plus.png │ │ │ ├── action-menu-button-base@2x.png │ │ │ ├── action-menu-button-checkin.png │ │ │ ├── action-menu-button-love@2x.png │ │ │ ├── action-menu-button-minus@2x.png │ │ │ ├── action-menu-button-plus@2x.png │ │ │ ├── action-menu-button-question.png │ │ │ ├── action-menu-button-update.png │ │ │ ├── action-menu-button-checkin@2x.png │ │ │ ├── action-menu-button-update@2x.png │ │ │ ├── action-menu-button-love-selected.png │ │ │ ├── action-menu-button-question@2x.png │ │ │ ├── action-menu-button-update-selected.png │ │ │ ├── action-menu-button-love-selected@2x.png │ │ │ ├── action-menu-button-question-selected.png │ │ │ ├── action-menu-button-update-selected@2x.png │ │ │ └── action-menu-button-question-selected@2x.png │ ├── CPTabBarControllerView.h │ ├── CPTabBarControllerView.m │ ├── CPTabBarController.h │ └── CPThinTabBar.h ├── 3rdParty │ ├── Airship │ │ ├── libUAirship-1.2.1.a │ │ ├── UI │ │ │ └── Default │ │ │ │ ├── Inbox │ │ │ │ ├── Resources │ │ │ │ │ └── Shared │ │ │ │ │ │ ├── up.png │ │ │ │ │ │ ├── check.png │ │ │ │ │ │ ├── down.png │ │ │ │ │ │ ├── up@2x.png │ │ │ │ │ │ ├── check@2x.png │ │ │ │ │ │ ├── down@2x.png │ │ │ │ │ │ ├── uncheck.png │ │ │ │ │ │ ├── uncheck@2x.png │ │ │ │ │ │ ├── Overlay │ │ │ │ │ │ ├── overlayCloseBtn.png │ │ │ │ │ │ └── overlayCloseBtn@2x.png │ │ │ │ │ │ └── UAInboxLocalization.bundle │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ │ └── zh_CN.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ └── Classes │ │ │ │ │ └── Shared │ │ │ │ │ └── UABeveledLoadingIndicator.h │ │ │ │ ├── Push │ │ │ │ └── Resources │ │ │ │ │ └── Shared │ │ │ │ │ ├── top-detail.png │ │ │ │ │ ├── bottom-detail.png │ │ │ │ │ ├── middle-detail.png │ │ │ │ │ ├── top-detail@2x.png │ │ │ │ │ ├── bottom-detail@2x.png │ │ │ │ │ ├── middle-detail@2x.png │ │ │ │ │ └── UAPushLocalization.bundle │ │ │ │ │ └── en.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── StoreFront │ │ │ │ └── Resources │ │ │ │ │ └── Shared │ │ │ │ │ ├── accessory.png │ │ │ │ │ ├── top-detail.png │ │ │ │ │ ├── accessory@2x.png │ │ │ │ │ ├── detail-bottom.png │ │ │ │ │ ├── middle-detail.png │ │ │ │ │ ├── top-detail@2x.png │ │ │ │ │ ├── detail-bottom@2x.png │ │ │ │ │ ├── middle-detail@2x.png │ │ │ │ │ └── UAStoreFrontLocalization.bundle │ │ │ │ │ └── en.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ └── Subscription │ │ │ │ └── Resources │ │ │ │ └── Shared │ │ │ │ ├── accessory.png │ │ │ │ ├── top-detail.png │ │ │ │ ├── accessory@2x.png │ │ │ │ ├── detail-bottom.png │ │ │ │ ├── middle-detail.png │ │ │ │ ├── top-detail@2x.png │ │ │ │ ├── detail-bottom@2x.png │ │ │ │ ├── middle-detail@2x.png │ │ │ │ └── UASubscriptionLocalization.bundle │ │ │ │ └── zh_CN.lproj │ │ │ │ └── Localizable.strings │ │ └── External │ │ │ ├── UA_ZipFile-OC │ │ │ ├── UA_minizip │ │ │ │ └── UA_mztools.h │ │ │ └── UA_ZipArchive.h │ │ │ ├── UA_Base64.h │ │ │ └── UA_asi-http-request │ │ │ ├── UA_ASIInputStream.h │ │ │ └── UA_ASIAuthenticationDialog.h │ ├── UserVoiceSDK │ │ ├── libUserVoice.a │ │ ├── UVResources │ │ │ ├── uv_alert.png │ │ │ ├── uv_idea.png │ │ │ ├── uv_logo.png │ │ │ ├── uv_article.png │ │ │ ├── uv_idea@2x.png │ │ │ ├── uv_logo@2x.png │ │ │ ├── uv_alert@2x.png │ │ │ ├── uv_article@2x.png │ │ │ ├── uv_karma_star.png │ │ │ ├── uv_default_avatar.png │ │ │ ├── uv_karma_star@2x.png │ │ │ ├── uv_vote_chicklet.png │ │ │ ├── uv_default_avatar@2x.png │ │ │ ├── uv_error_connection.png │ │ │ ├── uv_vote_chicklet@2x.png │ │ │ ├── uv_error_connection@2x.png │ │ │ ├── uv_primary_button_green.png │ │ │ ├── uv_primary_button_red.png │ │ │ ├── uv_user_chicklet_dark.png │ │ │ ├── uv_user_chicklet_detail.png │ │ │ ├── uv_user_chicklet_light.png │ │ │ ├── uv_vote_chicklet_empty.png │ │ │ ├── uv_primary_button_red@2x.png │ │ │ ├── uv_user_chicklet_dark@2x.png │ │ │ ├── uv_user_chicklet_light@2x.png │ │ │ ├── uv_vote_chicklet_empty@2x.png │ │ │ ├── uv_primary_button_green@2x.png │ │ │ ├── uv_primary_button_red_active.png │ │ │ ├── uv_user_chicklet_detail@2x.png │ │ │ ├── uv_primary_button_green_active.png │ │ │ ├── uv_primary_button_green_active@2x.png │ │ │ └── uv_primary_button_red_active@2x.png │ │ └── UVHeaders │ │ │ └── UVDelegate.h │ ├── TestFlightSDK │ │ └── libTestFlight.a │ ├── GRMustache │ │ └── libGRMustache4-iOS.a │ ├── FlurryAnalytics │ │ └── libFlurryAnalytics.a │ ├── SVProgressHUD │ │ ├── SVProgressHUD.bundle │ │ │ ├── error.png │ │ │ ├── error@2x.png │ │ │ ├── success.png │ │ │ └── success@2x.png │ │ └── LICENSE.txt │ ├── SVPullToRefresh │ │ ├── SVPullToRefresh.bundle │ │ │ ├── arrow.png │ │ │ └── arrow@2x.png │ │ └── SVPullToRefresh.h │ ├── TableViewHelper │ │ ├── TableViewControllerHelper.h │ │ ├── Readme.mdown │ │ └── LICENSE-MIT.txt │ ├── UIImage-categories │ │ ├── UIImage+Alpha.h │ │ ├── UIImage+RoundedCorner.h │ │ └── UIImage+Resize.h │ ├── OAuthConsumerARC │ │ ├── Crypto │ │ │ └── sha1.h │ │ ├── README │ │ ├── OAAttachment.m │ │ └── OAAttachment.h │ ├── SDWebImage │ │ ├── SDWebImageCompat.h │ │ ├── SDImageCacheDelegate.h │ │ ├── SDWebImageManagerDelegate.h │ │ ├── SDWebImageDownloaderDelegate.h │ │ ├── MKAnnotationView+WebCache.h │ │ ├── SDWebImageDecoder.h │ │ ├── LICENSE │ │ ├── UIButton+WebCache.h │ │ ├── SDImageCache.h │ │ ├── UIButton+WebCache.m │ │ └── SDWebImagePrefetcher.h │ ├── TPKeyboardAvoiding │ │ ├── TPKeyboardAvoidingTableView.h │ │ └── TPKeyboardAvoidingScrollView.h │ ├── MKStoreKit │ │ └── MKStoreKitConfigs.plist │ ├── TapkuLibrary-subset │ │ └── License.txt │ ├── Pickers │ │ └── DistancePickerView.h │ ├── SBJson │ │ └── Credits.md │ ├── Facebook-with-blocks │ │ └── LICENSE-MIT.txt │ └── SA_ActionSheet │ │ └── Readme.txt ├── Chat │ ├── images │ │ ├── chat-bubble-left-top.png │ │ ├── chat-bubble-right-top.png │ │ ├── chat-bubble-left-bottom.png │ │ ├── chat-bubble-left-middle.png │ │ ├── chat-bubble-left-top@2x.png │ │ ├── chat-bubble-right-bottom.png │ │ ├── chat-bubble-right-middle.png │ │ ├── chat-bubble-right-top@2x.png │ │ ├── chat-bubble-left-bottom@2x.png │ │ ├── chat-bubble-left-middle@2x.png │ │ ├── chat-bubble-right-bottom@2x.png │ │ └── chat-bubble-right-middle@2x.png │ ├── ChatMessageCell.h │ ├── OneOnOneChatHistory.h │ ├── ChatHelper.h │ ├── ChatMessageCell.m │ ├── ChatMessage.h │ └── ChatHistory.h ├── Contacts │ ├── images │ │ ├── contact-accept.png │ │ ├── contact-ignore.png │ │ ├── contact-accept@2x.png │ │ ├── contact-ignore@2x.png │ │ ├── contacts-blank-slate.png │ │ ├── contacts-blank-slate@2x.png │ │ ├── virtual-check-in-badge.png │ │ ├── contact-cell-bg-selected.png │ │ ├── virtual-check-in-badge@2x.png │ │ └── contact-cell-bg-selected@2x.png │ ├── ContactListViewController.h │ └── ContactListCell.h ├── Login │ ├── images │ │ ├── linked-in-connect.png │ │ ├── splash-screen-logo.png │ │ ├── linked-in-connect@2x.png │ │ └── splash-screen-logo@2x.png │ ├── EnterEmailAfterSingUpController.h │ ├── SmartererLoginController.h │ ├── EnterInvitationCodeViewController.h │ ├── SignupController.h │ ├── BaseLoginController.h │ └── LinkedInLoginController.h ├── Common │ ├── CPSwipeableTableViewCell │ │ ├── send-love-on.aif │ │ ├── send-love-on.png │ │ ├── send-love-off.png │ │ ├── send-love-on@2x.png │ │ ├── send-message-on.aif │ │ ├── send-message-on.png │ │ ├── send-love-off@2x.png │ │ ├── send-message-off.png │ │ ├── exchange-contacts-on.aif │ │ ├── exchange-contacts-on.png │ │ ├── send-message-off@2x.png │ │ ├── send-message-on@2x.png │ │ ├── exchange-contacts-off.png │ │ ├── exchange-contacts-off@2x.png │ │ ├── exchange-contacts-on@2x.png │ │ └── CPUserAction.h │ ├── CPTouchableView.h │ ├── CPBaseTableViewController.h │ ├── CPSoundEffectsManager.h │ ├── CPPlaceholderTextView.h │ ├── CPUserDefaultsHandler.h │ └── CPSoundEffectsManager.m ├── AirshipConfig.plist ├── main.m ├── mustaches │ ├── ProfileBackground.mustache │ ├── UserResume-badges.mustache │ └── TermsOfService.mustache ├── Skills │ └── CPSkill.h ├── FaceToFace │ ├── FaceToFacePasswordInputViewController.h │ ├── FaceToFaceHelper.h │ └── FaceToFaceAcceptDeclineViewController.h └── candpiosapp-Prefix.pch ├── README ├── candpiosapp.xcodeproj └── project.xcworkspace │ └── contents.xcworkspacedata └── .gitignore /LICENSE: -------------------------------------------------------------------------------- 1 | All Rights Reserved © CoffeeAndPower, Inc 2012 -------------------------------------------------------------------------------- /Icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/Icon -------------------------------------------------------------------------------- /candpiosapp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /candpiosapp/Icon/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Icon/Icon.png -------------------------------------------------------------------------------- /candpiosapp/Icon/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Icon/Default.png -------------------------------------------------------------------------------- /candpiosapp/Icon/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Icon/Icon@2x.png -------------------------------------------------------------------------------- /candpiosapp/LeagueGothic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/LeagueGothic.otf -------------------------------------------------------------------------------- /candpiosapp/Icon/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Icon/Default@2x.png -------------------------------------------------------------------------------- /candpiosapp/Icon/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Icon/Icon-Small.png -------------------------------------------------------------------------------- /candpiosapp/Icon/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Icon/Icon-Small@2x.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/love-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/love-sent.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/map-locate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/map-locate.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/map-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/map-refresh.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/map-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/map-shadow.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/pin-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/pin-frame.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/pin-solar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/pin-solar.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/pin_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/pin_small.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/places-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/places-icon.png -------------------------------------------------------------------------------- /candpiosapp/User/images/go-menu-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/go-menu-bg.png -------------------------------------------------------------------------------- /candpiosapp/User/images/send-love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/send-love.png -------------------------------------------------------------------------------- /candpiosapp/User/images/thumbs-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/thumbs-up.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/hide-element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/hide-element.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/love-bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/love-bubble.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/love-sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/love-sent@2x.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/map-locate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/map-locate@2x.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/map-shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/map-shadow@2x.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/pin-checkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/pin-checkedin.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/pin-solar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/pin-solar@2x.png -------------------------------------------------------------------------------- /candpiosapp/Payment/images/add-funds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Payment/images/add-funds.png -------------------------------------------------------------------------------- /candpiosapp/User/images/props-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/props-thumb.png -------------------------------------------------------------------------------- /candpiosapp/User/images/send-love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/send-love@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/thumbs-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/thumbs-down.png -------------------------------------------------------------------------------- /candpiosapp/User/images/thumbs-up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/thumbs-up@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/logo.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/place-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/place-phone.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/places-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/places-icon.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/check-in-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/check-in-big.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/tab-check-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/tab-check-in.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/hide-element@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/hide-element@2x.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/love-bubble@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/love-bubble@2x.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/user-image-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/user-image-mask.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/map-refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/map-refresh@2x.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/pin-checkedin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/pin-checkedin@2x.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/pin-checkedout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/pin-checkedout.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/places-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/places-icon@2x.png -------------------------------------------------------------------------------- /candpiosapp/Payment/images/add-funds@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Payment/images/add-funds@2x.png -------------------------------------------------------------------------------- /candpiosapp/Payment/images/vector-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Payment/images/vector-lock.png -------------------------------------------------------------------------------- /candpiosapp/Payment/images/wallet-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Payment/images/wallet-lock.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/drop-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/drop-down.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/plug-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/plug-logo.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/toggle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/toggle-off.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/toggle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/toggle-on.png -------------------------------------------------------------------------------- /candpiosapp/User/images/exchange-cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/exchange-cards.png -------------------------------------------------------------------------------- /candpiosapp/User/images/go-menu-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/go-menu-bg@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/props-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/props-thumb@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/thumbs-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/thumbs-down@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/bullet.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/logo@2x.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/place-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/place-location.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/place-phone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/place-phone@2x.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/places-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/places-icon@2x.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/tab-check-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/tab-check-out.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/plus-love-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/plus-love-button.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/map-marker~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/map-marker~iphone.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/people-place-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/people-place-list.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/pin-checkedout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/pin-checkedout@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/thin-nav-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/thin-nav-bg.png -------------------------------------------------------------------------------- /candpiosapp/Payment/images/vector-lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Payment/images/vector-lock@2x.png -------------------------------------------------------------------------------- /candpiosapp/Payment/images/wallet-lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Payment/images/wallet-lock@2x.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/drop-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/drop-down@2x.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/plug-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/plug-logo@2x.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/toggle-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/toggle-off@2x.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/toggle-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/toggle-on@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/exchange-cards@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/exchange-cards@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/go-button~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/go-button~iphone.png -------------------------------------------------------------------------------- /candpiosapp/User/images/go-menu-button-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/go-menu-button-2.png -------------------------------------------------------------------------------- /candpiosapp/User/images/go-menu-button-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/go-menu-button-3.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/bullet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/bullet@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/header.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/libUAirship-1.2.1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/libUAirship-1.2.1.a -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/libUserVoice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/libUserVoice.a -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-left-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-left-top.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/check-in-big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/check-in-big@2x.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/tab-check-in@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/tab-check-in@2x.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/tab-check-out@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/tab-check-out@2x.png -------------------------------------------------------------------------------- /candpiosapp/Contacts/images/contact-accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Contacts/images/contact-accept.png -------------------------------------------------------------------------------- /candpiosapp/Contacts/images/contact-ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Contacts/images/contact-ignore.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/plus-love-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/plus-love-button@2x.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/user-image-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/user-image-mask@2x.png -------------------------------------------------------------------------------- /candpiosapp/Login/images/linked-in-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Login/images/linked-in-connect.png -------------------------------------------------------------------------------- /candpiosapp/Login/images/splash-screen-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Login/images/splash-screen-logo.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/map-marker@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/map-marker@2x~iphone.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/people-place-list@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/people-place-list@2x.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/pin-virtual-checkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/pin-virtual-checkedin.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/thin-nav-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/thin-nav-bg@2x.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/linkedin-invite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/linkedin-invite.png -------------------------------------------------------------------------------- /candpiosapp/User/images/default-avatar-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/default-avatar-256.png -------------------------------------------------------------------------------- /candpiosapp/User/images/go-button@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/go-button@2x~iphone.png -------------------------------------------------------------------------------- /candpiosapp/User/images/go-menu-button-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/go-menu-button-2@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/go-menu-button-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/go-menu-button-3@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/go-menu-button-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/go-menu-button-minus.png -------------------------------------------------------------------------------- /candpiosapp/User/images/person-login-to-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/person-login-to-view.png -------------------------------------------------------------------------------- /candpiosapp/User/images/send-love-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/send-love-small@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/back-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/back-button.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/button-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/button-grey.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/header@2x.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/picture-coming-soon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/picture-coming-soon.jpg -------------------------------------------------------------------------------- /candpiosapp/Venue/images/place-location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/place-location@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/TestFlightSDK/libTestFlight.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/TestFlightSDK/libTestFlight.a -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-right-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-right-top.png -------------------------------------------------------------------------------- /candpiosapp/Contacts/images/contact-accept@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Contacts/images/contact-accept@2x.png -------------------------------------------------------------------------------- /candpiosapp/Contacts/images/contact-ignore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Contacts/images/contact-ignore@2x.png -------------------------------------------------------------------------------- /candpiosapp/Login/images/linked-in-connect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Login/images/linked-in-connect@2x.png -------------------------------------------------------------------------------- /candpiosapp/Login/images/splash-screen-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Login/images/splash-screen-logo@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/icons/tab-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/icons/tab-login.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/icons/tab-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/icons/tab-people.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/icons/tab-venues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/icons/tab-venues.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/linkedin-invite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/linkedin-invite@2x.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/settings-button-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/settings-button-3.png -------------------------------------------------------------------------------- /candpiosapp/User/images/default-avatar-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/default-avatar-256@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/network-icon-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/network-icon-facebook.png -------------------------------------------------------------------------------- /candpiosapp/User/images/network-icon-linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/network-icon-linkedin.png -------------------------------------------------------------------------------- /candpiosapp/User/images/others-at-venue~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/others-at-venue~iphone.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/header-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/header-button.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/list-arrow-dark-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/list-arrow-dark-grey.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/GRMustache/libGRMustache4-iOS.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/GRMustache/libGRMustache4-iOS.a -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-left-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-left-bottom.png -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-left-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-left-middle.png -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-left-top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-left-top@2x.png -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-right-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-right-bottom.png -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-right-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-right-middle.png -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-right-top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-right-top@2x.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/check-in-slider-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/check-in-slider-handle.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/check-in-status-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/check-in-status-arrow.png -------------------------------------------------------------------------------- /candpiosapp/Contacts/images/contacts-blank-slate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Contacts/images/contacts-blank-slate.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/list-arrow-big-light-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/list-arrow-big-light-grey.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/pill-button-plus1-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/pill-button-plus1-comment.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/map-refresh-progress-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/map-refresh-progress-arrow.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/pin-virtual-checkedin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/pin-virtual-checkedin@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/icons/tab-contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/icons/tab-contacts.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/icons/tab-logbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/icons/tab-logbook.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/icons/tab-login@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/icons/tab-login@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/icons/tab-people@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/icons/tab-people@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/icons/tab-venues@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/icons/tab-venues@2x.png -------------------------------------------------------------------------------- /candpiosapp/Payment/images/wallet-cell-arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Payment/images/wallet-cell-arrow-down.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/settings-button-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/settings-button-3@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/available-for-icon~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/available-for-icon~iphone.png -------------------------------------------------------------------------------- /candpiosapp/User/images/go-menu-button-minus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/go-menu-button-minus@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/network-icon-facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/network-icon-facebook@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/network-icon-linkedin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/network-icon-linkedin@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/others-at-venue@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/others-at-venue@2x~iphone.png -------------------------------------------------------------------------------- /candpiosapp/User/images/person-login-to-view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/person-login-to-view@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/sounds/send-love-switch-sound-on.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/sounds/send-love-switch-sound-on.wav -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/back-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/back-button@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/button-grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/button-grey@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/button-turquoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/button-turquoise.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/divider-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/divider-button.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/header-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/header-button@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/checkbox-checked.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/expand-arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/expand-arrow-down.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/header-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/header-shadow.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/menu-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/menu-background.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/paper-texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/paper-texture.jpg -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/perforated-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/perforated-skin.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/secret-society.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/secret-society.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/list-arrow-dark-grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/list-arrow-dark-grey@2x.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/picture-coming-soon@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/picture-coming-soon@2x.jpg -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-left-bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-left-bottom@2x.png -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-left-middle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-left-middle@2x.png -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-right-bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-right-bottom@2x.png -------------------------------------------------------------------------------- /candpiosapp/Chat/images/chat-bubble-right-middle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Chat/images/chat-bubble-right-middle@2x.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/check-in-status-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/check-in-status-arrow@2x.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/tab-check-in-clock-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/tab-check-in-clock-hand.png -------------------------------------------------------------------------------- /candpiosapp/Contacts/images/contacts-blank-slate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Contacts/images/contacts-blank-slate@2x.png -------------------------------------------------------------------------------- /candpiosapp/Contacts/images/virtual-check-in-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Contacts/images/virtual-check-in-badge.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/venue-feed-bg-container-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/venue-feed-bg-container-top.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/icons/tab-contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/icons/tab-contacts@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/icons/tab-logbook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/icons/tab-logbook@2x.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/invite-code-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/invite-code-background.png -------------------------------------------------------------------------------- /candpiosapp/User/images/checked-in-location~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/checked-in-location~iphone.png -------------------------------------------------------------------------------- /candpiosapp/User/sounds/send-love-switch-sound-off.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/sounds/send-love-switch-sound-off.wav -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/divider-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/divider-button@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/checkbox-checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/checkbox-checked@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/checkbox-unchecked.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/refresh-scroll-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/refresh-scroll-view.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/cell-shadow-harsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/cell-shadow-harsh.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/header-shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/header-shadow@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/secret-society@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/secret-society@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/FlurryAnalytics/libFlurryAnalytics.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/FlurryAnalytics/libFlurryAnalytics.a -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_alert.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_idea.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_logo.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/check-in-slider-handle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/check-in-slider-handle@2x.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/tab-check-in-clock-hand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/tab-check-in-clock-hand@2x.png -------------------------------------------------------------------------------- /candpiosapp/Contacts/images/contact-cell-bg-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Contacts/images/contact-cell-bg-selected.png -------------------------------------------------------------------------------- /candpiosapp/Contacts/images/virtual-check-in-badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Contacts/images/virtual-check-in-badge@2x.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/list-arrow-big-light-grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/list-arrow-big-light-grey@2x.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/pill-button-plus1-comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/pill-button-plus1-comment@2x.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/venue-feed-bg-container-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/venue-feed-bg-container-bottom.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/venue-feed-bg-container-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/venue-feed-bg-container-middle.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/venue-feed-bg-container-top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/venue-feed-bg-container-top@2x.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/map-refresh-progress-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/map-refresh-progress-arrow@2x.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/people-marker-turquoise-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/people-marker-turquoise-circle.png -------------------------------------------------------------------------------- /candpiosapp/Payment/images/wallet-cell-arrow-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Payment/images/wallet-cell-arrow-down@2x.png -------------------------------------------------------------------------------- /candpiosapp/Settings/images/invite-code-background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Settings/images/invite-code-background@2x.png -------------------------------------------------------------------------------- /candpiosapp/User/images/available-for-icon@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/available-for-icon@2x~iphone.png -------------------------------------------------------------------------------- /candpiosapp/User/images/checked-in-location@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/User/images/checked-in-location@2x~iphone.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/button-turquoise-32pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/button-turquoise-32pt.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/button-turquoise@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/button-turquoise@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/checkbox-unchecked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/checkbox-unchecked@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/expand-arrow-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/expand-arrow-down@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/common/refresh-scroll-view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/common/refresh-scroll-view@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/cell-shadow-harsh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/cell-shadow-harsh@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/perforated-skin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/perforated-skin@2x.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/picture-coming-soon-rectangle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/picture-coming-soon-rectangle.jpg -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_article.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_idea@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_idea@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_logo@2x.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/check-in-slider-grooves-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/check-in-slider-grooves-dark.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/check-in-slider-grooves-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/check-in-slider-grooves-light.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/send-love-on.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/send-love-on.aif -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/send-love-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/send-love-on.png -------------------------------------------------------------------------------- /candpiosapp/Contacts/images/contact-cell-bg-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Contacts/images/contact-cell-bg-selected@2x.png -------------------------------------------------------------------------------- /candpiosapp/Map/images/people-marker-turquoise-circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Map/images/people-marker-turquoise-circle@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-bg.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/menu-header-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/menu-header-background.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/texture-diagonal-noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/texture-diagonal-noise.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/texture-first-aid-kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/texture-first-aid-kit.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_alert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_alert@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_article@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_article@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_karma_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_karma_star.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/check-in-slider-grooves-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/check-in-slider-grooves-dark@2x.png -------------------------------------------------------------------------------- /candpiosapp/Checkin/images/check-in-slider-grooves-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Checkin/images/check-in-slider-grooves-light@2x.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/send-love-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/send-love-off.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/send-love-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/send-love-on@2x.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/send-message-on.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/send-message-on.aif -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/send-message-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/send-message-on.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/venue-feed-bg-container-bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/venue-feed-bg-container-bottom@2x.png -------------------------------------------------------------------------------- /candpiosapp/Feed/images/venue-feed-bg-container-middle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Feed/images/venue-feed-bg-container-middle@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-bg@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/buttons/button-turquoise-32pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/buttons/button-turquoise-32pt@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/menu-header-background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/menu-header-background@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/selected-menu-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/selected-menu-background.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/texture-diagonal-noise@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/texture-diagonal-noise@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/texture-first-aid-kit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/texture-first-aid-kit@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/texture-lightpaperfibers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/texture-lightpaperfibers.png -------------------------------------------------------------------------------- /candpiosapp/Venue/images/picture-coming-soon-rectangle@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Venue/images/picture-coming-soon-rectangle@2x.jpg -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/send-love-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/send-love-off@2x.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/send-message-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/send-message-off.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/texture-diagonal-noise-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/texture-diagonal-noise-dark.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/texture-lightpaperfibers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/texture-lightpaperfibers@2x.png -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Coffee & Power is an app that creates a community of mobile technology workers who can find each other, find places to work together, reward each other for help, and build a resume. -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_default_avatar.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_karma_star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_karma_star@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_vote_chicklet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_vote_chicklet.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/exchange-contacts-on.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/exchange-contacts-on.aif -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/exchange-contacts-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/exchange-contacts-on.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/send-message-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/send-message-off@2x.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/send-message-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/send-message-on@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/texture-diagonal-noise-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/texture-diagonal-noise-dark@2x.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/texture-diagonal-noise-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/texture-diagonal-noise-light.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/up.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SVPullToRefresh/SVPullToRefresh.bundle/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/SVPullToRefresh/SVPullToRefresh.bundle/arrow.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_default_avatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_default_avatar@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_error_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_error_connection.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_vote_chicklet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_vote_chicklet@2x.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/exchange-contacts-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/exchange-contacts-off.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-base.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-love.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-minus.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-plus.png -------------------------------------------------------------------------------- /candpiosapp/Utils/images/textures/texture-diagonal-noise-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Utils/images/textures/texture-diagonal-noise-light@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/check.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/down.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/up@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SVPullToRefresh/SVPullToRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/SVPullToRefresh/SVPullToRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_error_connection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_error_connection@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_green.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_red.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_dark.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_detail.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_light.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_vote_chicklet_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_vote_chicklet_empty.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/exchange-contacts-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/exchange-contacts-off@2x.png -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/exchange-contacts-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Common/CPSwipeableTableViewCell/exchange-contacts-on@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-base@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-base@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-checkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-checkin.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-love@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-minus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-minus@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-plus@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-question.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-update.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/check@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/down@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/uncheck.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_red@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_dark@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_light@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_vote_chicklet_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_vote_chicklet_empty@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-checkin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-checkin@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-update@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-update@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/uncheck@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/uncheck@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/top-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/top-detail.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_green@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_red_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_red_active.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_user_chicklet_detail@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-love-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-love-selected.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-question@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-question@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/bottom-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/bottom-detail.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/middle-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/middle-detail.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/top-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/top-detail@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_green_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_green_active.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-update-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-update-selected.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/bottom-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/bottom-detail@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/middle-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/middle-detail@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/accessory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/accessory.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/top-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/top-detail.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/accessory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/accessory.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_green_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_green_active@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_red_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/UserVoiceSDK/UVResources/uv_primary_button_red_active@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-love-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-love-selected@2x.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-question-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-question-selected.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-update-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-update-selected@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/accessory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/accessory@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/detail-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/detail-bottom.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/middle-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/middle-detail.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/top-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/top-detail@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/top-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/top-detail.png -------------------------------------------------------------------------------- /candpiosapp/Navigation/images/action-menu/action-menu-button-question-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/Navigation/images/action-menu/action-menu-button-question-selected@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/detail-bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/detail-bottom@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/middle-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/middle-detail@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/accessory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/accessory@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/detail-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/detail-bottom.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/middle-detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/middle-detail.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/top-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/top-detail@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/Overlay/overlayCloseBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/Overlay/overlayCloseBtn.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/detail-bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/detail-bottom@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/middle-detail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/middle-detail@2x.png -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/Overlay/overlayCloseBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/Overlay/overlayCloseBtn@2x.png -------------------------------------------------------------------------------- /candpiosapp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/UAInboxLocalization.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/UAInboxLocalization.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/UAPushLocalization.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Push/Resources/Shared/UAPushLocalization.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/UAInboxLocalization.bundle/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Inbox/Resources/Shared/UAInboxLocalization.bundle/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /candpiosapp/AirshipConfig.plist: -------------------------------------------------------------------------------- 1 | { 2 | "APP_STORE_OR_AD_HOC_BUILD" = NO; 3 | "DEVELOPMENT_APP_KEY" = "MdIwOyc2RdaMEdSN1KduGw"; 4 | "DEVELOPMENT_APP_SECRET" = "WSoFHnocTueQmx3z5UDtwQ"; 5 | "PRODUCTION_APP_KEY" = "0x81fPnVS7Cak5riK0dGqQ"; 6 | "PRODUCTION_APP_SECRET" = "KZgM05o9RQi666y5GbTD-Q"; 7 | } -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/UAStoreFrontLocalization.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/StoreFront/Resources/Shared/UAStoreFrontLocalization.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/UASubscriptionLocalization.bundle/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/cp_ios/master/candpiosapp/3rdParty/Airship/UI/Default/Subscription/Resources/Shared/UASubscriptionLocalization.bundle/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | build/* 3 | *.pbxuser 4 | !default.pbxuser 5 | *.mode1v3 6 | !default.mode1v3 7 | *.mode2v3 8 | !default.mode2v3 9 | *.perspectivev3 10 | !default.perspectivev3 11 | *.xcworkspace 12 | !default.xcworkspace 13 | xcuserdata 14 | profile 15 | *.moved-aside 16 | DerivedData 17 | *.orig 18 | .DS_Store -------------------------------------------------------------------------------- /candpiosapp/Checkin/CheckInDetailsFrame.h: -------------------------------------------------------------------------------- 1 | // 2 | // CheckInDetailsFrame.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 2/17/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CheckInDetailsFrame : UIView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /candpiosapp/Settings/SupportTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SupportTableViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Tomáš Horáček on 5/22/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | @interface SupportTableViewController : UITableViewController 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /candpiosapp/Settings/TermsOfServiceViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TermsOfServiceViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Tomáš Horáček on 5/22/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | @interface TermsOfServiceViewController : UIViewController 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /candpiosapp/Login/EnterEmailAfterSingUpController.h: -------------------------------------------------------------------------------- 1 | // 2 | // EnterEmailAfterSingUpController.h 3 | // candpiosapp 4 | // 5 | // Created by Tomáš Horáček on 5/1/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | @interface EnterEmailAfterSingUpController : UIViewController 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /candpiosapp/Settings/ResumeVisibilityViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ResumeVisibilityViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Tomáš Horáček on 6/14/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | @interface ResumeVisibilityViewController : UIViewController 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /candpiosapp/Navigation/CPTabBarControllerView.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPTabBarControllerView.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 7/13/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CPTabBarControllerView : UIView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /candpiosapp/Settings/ProfileViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ProfileViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 29.6.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | @interface ProfileViewController : UIViewController 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /candpiosapp/Settings/JobCategoryViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // JobCategoryViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 14.4.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface JobCategoryViewController : UIViewController 12 | @end 13 | -------------------------------------------------------------------------------- /candpiosapp/Utils/UIImage+ImageBlur.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+ImageBlur.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 03.7.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (ImageBlur) 12 | - (UIImage *)imageWithGaussianBlur; 13 | @end -------------------------------------------------------------------------------- /candpiosapp/Settings/Invite/GenerateInvitationCodeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // GenerateInvitationCodeViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Tomáš Horáček on 4/5/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | @interface GenerateInvitationCodeViewController : UIViewController 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /candpiosapp/Utils/CPAlertView.m: -------------------------------------------------------------------------------- 1 | // 2 | // CPAlertView.m 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/02/23. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "CPAlertView.h" 10 | 11 | @implementation CPAlertView 12 | 13 | @synthesize context; 14 | @synthesize rootView; 15 | 16 | @end -------------------------------------------------------------------------------- /candpiosapp/Utils/UIViewController+isModal.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+isModal.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 4/9/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIViewController (isModal) 12 | 13 | -(BOOL)isModal; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /candpiosapp/Venue/VenueViewToggleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // VenueViewToggleViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/18/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface VenueViewToggleViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UserVoiceSDK/UVHeaders/UVDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // UVDelegate.h 3 | // UserVoice 4 | // 5 | // Created by Austin Taylor on 1/13/12. 6 | // Copyright (c) 2012 UserVoice Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @protocol UVDelegate 12 | @optional 13 | - (void)userVoiceWasDismissed; 14 | @end 15 | -------------------------------------------------------------------------------- /candpiosapp/Settings/ProfileNotificationsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ProfileNotificationsViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 05.5.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ProfileNotificationsViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /candpiosapp/Settings/Invite/InviteLinkedInConnectionsTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // InviteLinkedInConnectionsTableViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Tomáš Horáček on 5/29/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | @interface InviteLinkedInConnectionsTableViewController : UITableViewController 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /candpiosapp/Settings/LinkedAccountsTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LinkedAccountsTableViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/03/20. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LinkedAccountsTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /candpiosapp/Payment/PaymentHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // CheckInHelper.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 26.2.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface PaymentHelper : NSObject 12 | 13 | + (void)showPaymentReceivedAlertWithMessage:(NSString *)message; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /candpiosapp/Feed/cells/PostUpdateCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // PostUpdateCell.m 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/22/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "PostUpdateCell.h" 10 | 11 | @implementation PostUpdateCell 12 | 13 | @synthesize timeLabel = _timeLabel; 14 | @synthesize dateLabel = _dateLabel; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /candpiosapp/Utils/UIColor+EasyRGB.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+EasyRGB.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/17/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIColor (EasyRGB) 12 | 13 | + (UIColor *)colorWithR:(CGFloat)red G:(CGFloat)green B:(CGFloat)blue A:(CGFloat)alpha; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /candpiosapp/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // candpiosapp 4 | // 5 | // Created by David Mojdehi on 12/30/11. 6 | // Copyright (c) 2011 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /candpiosapp/Feed/cells/PostLoveCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // PostLoveCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/22/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "PostBaseCell.h" 11 | 12 | @interface PostLoveCell : PostBaseCell 13 | 14 | @property (nonatomic, assign) IBOutlet UIButton *receiverProfileButton; 15 | @end 16 | -------------------------------------------------------------------------------- /candpiosapp/Settings/SkillsTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SkillsTableViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/23/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SkillsTableViewController : UITableViewController 12 | 13 | @property (nonatomic, strong) NSMutableArray *skills; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /candpiosapp/Feed/cells/NewPostCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // NewPostCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/12/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "PostBaseCell.h" 10 | #import "HPGrowingTextView.h" 11 | 12 | @interface NewPostCell : PostBaseCell 13 | 14 | @property (nonatomic, assign) IBOutlet HPGrowingTextView *growingTextView; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /candpiosapp/User/LoveSkillTableViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LoveSkillTableViewCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/25/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LoveSkillTableViewCell : UITableViewCell 12 | 13 | @property (nonatomic, assign) BOOL forceActive; 14 | 15 | - (void)setActive:(BOOL)active; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/TableViewHelper/TableViewControllerHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // TableViewControllerHelper.h 3 | // TableCellHelper 4 | // 5 | // Created by David Mojdehi on 10/18/11. 6 | // Copyright 2011 Mindful Bear Apps. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TableViewControllerHelper : UITableViewController 12 | 13 | @property (strong, nonatomic, readonly) NSMutableArray *cellConfigs; 14 | @end 15 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UIImage-categories/UIImage+Alpha.h: -------------------------------------------------------------------------------- 1 | // UIImage+Alpha.h 2 | // Created by Trevor Harmon on 9/20/09. 3 | // Free for personal or commercial use, with or without modification. 4 | // No warranty is expressed or implied. 5 | 6 | // Helper methods for adding an alpha layer to an image 7 | @interface UIImage (Alpha) 8 | - (BOOL)hasAlpha; 9 | - (UIImage *)imageWithAlpha; 10 | - (UIImage *)transparentBorderImage:(NSUInteger)borderSize; 11 | @end 12 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UIImage-categories/UIImage+RoundedCorner.h: -------------------------------------------------------------------------------- 1 | // UIImage+RoundedCorner.h 2 | // Created by Trevor Harmon on 9/20/09. 3 | // Free for personal or commercial use, with or without modification. 4 | // No warranty is expressed or implied. 5 | 6 | // Extends the UIImage class to support making rounded corners 7 | @interface UIImage (RoundedCorner) 8 | - (UIImage *)roundedCornerImage:(NSInteger)cornerSize borderSize:(NSInteger)borderSize; 9 | @end 10 | -------------------------------------------------------------------------------- /candpiosapp/Settings/Invite/LinkedInConnectionCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // LinkedInConnectionCell.m 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/10/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "LinkedInConnectionCell.h" 10 | 11 | @implementation LinkedInConnectionCell 12 | 13 | @synthesize linkedInProfileImage = _linkedInProfileImage; 14 | @synthesize linkedInName = _linkedInName; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /candpiosapp/Venue/VenueListTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // VenuesTableViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 4/2/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPBaseTableViewController.h" 11 | 12 | @interface VenueListTableViewController : CPBaseTableViewController 13 | 14 | @property (nonatomic, strong) NSMutableArray *venues; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /candpiosapp/Feed/FeedVenuesTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LogVenuesTableViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 7/3/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPBaseTableViewController.h" 11 | 12 | @interface FeedVenuesTableViewController : CPBaseTableViewController 13 | 14 | @property (nonatomic, strong) NSMutableArray *venues; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /candpiosapp/Feed/CPVenueFeed.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPVenueFeed.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 7/9/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CPVenueFeed : NSObject 12 | 13 | @property (nonatomic, strong) CPVenue *venue; 14 | @property (nonatomic, strong) NSMutableArray *posts; 15 | 16 | - (void)addPostsFromArray:(NSArray *)postsArray; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /candpiosapp/Feed/cells/PostUpdateCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // PostUpdateCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/22/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "PostBaseCell.h" 11 | 12 | @interface PostUpdateCell : PostBaseCell 13 | 14 | @property (nonatomic, assign) IBOutlet UILabel *timeLabel; 15 | @property (nonatomic, assign) IBOutlet UILabel *dateLabel; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /candpiosapp/Login/SmartererLoginController.h: -------------------------------------------------------------------------------- 1 | #import "BaseLoginController.h" 2 | @class OAToken; 3 | 4 | @interface SmartererLoginController : BaseLoginController 5 | @property (weak, nonatomic) IBOutlet UIWebView *myWebView; 6 | 7 | @property (nonatomic, retain) OAToken *requestToken; 8 | @property (nonatomic, retain) UIActivityIndicatorView *activityIndicator; 9 | 10 | - (void)smartererLogin; 11 | - (void)loadSmartererConnections:(NSString *)token; 12 | @end 13 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/OAuthConsumerARC/Crypto/sha1.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | // From http://www.mirrors.wiretapped.net/security/cryptography/hashes/sha1/sha1.c 4 | 5 | typedef struct { 6 | u_int32_t state[5]; 7 | u_int32_t count[2]; 8 | u_int8_t buffer[64]; 9 | } SHA1_CTX; 10 | 11 | extern void SHA1Init(SHA1_CTX* context); 12 | extern void SHA1Update(SHA1_CTX* context, u_int8_t* data, u_int32_t len); 13 | extern void SHA1Final(u_int8_t digest[20], SHA1_CTX* context); 14 | -------------------------------------------------------------------------------- /candpiosapp/Settings/Invite/EditLinkedInInvitationMessageViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // EditLinkedInInvitationMessageViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Tomáš Horáček on 5/30/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | @interface EditLinkedInInvitationMessageViewController : UIViewController 10 | 11 | @property (nonatomic, strong) NSString *nickname; 12 | @property (nonatomic, strong) NSArray *connectionIDs; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /candpiosapp/Settings/Invite/LinkedInConnectionCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LinkedInConnectionCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/10/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LinkedInConnectionCell : UITableViewCell 12 | 13 | @property (nonatomic, weak) IBOutlet UIImageView *linkedInProfileImage; 14 | @property (nonatomic, weak) IBOutlet UILabel *linkedInName; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /candpiosapp/Chat/ChatMessageCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ChatMessageCell.h 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/02/29. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #define CHAT_LABEL_TAG 324 12 | #define BUBBLE_TOP_TAG 823 13 | #define BUBBLE_MIDDLE_TAG 953 14 | #define BUBBLE_BOTTOM_TAG 382 15 | #define TIMESTAMP_TAG 720 16 | 17 | @interface ChatMessageCell : UITableViewCell 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /candpiosapp/Settings/AutoCheckinTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AutoCheckinTableViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Emmanuel Crouvisier on 5/8/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AutoCheckinTableViewController : UITableViewController 12 | 13 | @property (weak, nonatomic) IBOutlet UISwitch *globalCheckinSwitch; 14 | - (IBAction)globalCheckinChanged:(id)sender; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /candpiosapp/Common/CPTouchableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPTouchableView.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 29.6.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @protocol CPTouchViewDelegate 12 | - (void) touchUp:(id)sender; 13 | @end 14 | 15 | @interface CPTouchableView : UIView { 16 | id delegate; 17 | } 18 | 19 | @property (nonatomic, strong) id delegate; 20 | @end 21 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | // 2 | // SDWebImageCompat.h 3 | // SDWebImageCompat 4 | // 5 | // Created by Jamie Pinkham on 3/15/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #if !TARGET_OS_IPHONE 12 | #import 13 | #ifndef UIImage 14 | #define UIImage NSImage 15 | #endif 16 | #ifndef UIImageView 17 | #define UIImageView NSImageView 18 | #endif 19 | #else 20 | #import 21 | #endif 22 | -------------------------------------------------------------------------------- /candpiosapp/Checkin/CheckInListCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // CheckInListCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 2/27/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CheckInListCell : UITableViewCell 12 | 13 | @property (nonatomic, weak) IBOutlet UILabel *venueName; 14 | @property (nonatomic, weak) IBOutlet UILabel *venueAddress; 15 | @property (nonatomic, weak) IBOutlet UILabel *distanceString; 16 | 17 | @end -------------------------------------------------------------------------------- /candpiosapp/3rdParty/TPKeyboardAvoiding/TPKeyboardAvoidingTableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TPKeyboardAvoidingTableView.h 3 | // 4 | // Created by Michael Tyson on 11/04/2011. 5 | // Copyright 2011 A Tasty Pixel. All rights reserved. 6 | // 7 | 8 | @interface TPKeyboardAvoidingTableView : UITableView { 9 | UIEdgeInsets _priorInset; 10 | BOOL _priorInsetSaved; 11 | BOOL _keyboardVisible; 12 | CGRect _keyboardRect; 13 | } 14 | 15 | - (void)adjustOffsetToIdealIfNeeded; 16 | @end 17 | -------------------------------------------------------------------------------- /candpiosapp/Settings/PushModalViewControllerFromLeftSegue.h: -------------------------------------------------------------------------------- 1 | // 2 | // PushModalViewControllerFromLeftSegue.h 3 | // candpiosapp 4 | // 5 | // Created by Tomáš Horáček on 5/10/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | @interface PushModalViewControllerFromLeftSegue : UIStoryboardSegue 10 | 11 | @end 12 | 13 | 14 | @interface UIViewController (DismissPushModalViewControllerFromLeftSegue) 15 | 16 | - (void)dismissPushModalViewControllerFromLeftSegue; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /candpiosapp/Utils/UIColor+EasyRGB.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+EasyRGB.m 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/17/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "UIColor+EasyRGB.h" 10 | 11 | @implementation UIColor (EasyRGB) 12 | 13 | + (UIColor *)colorWithR:(CGFloat)red G:(CGFloat)green B:(CGFloat)blue A:(CGFloat)alpha { 14 | return [UIColor colorWithRed:(red/255.0) green:(green/255.0) blue:(blue/255.0) alpha:alpha]; 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /candpiosapp/User/UserProfileLinkedInViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // UserProfileLinkedInViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Bryan Galusha on 5/8/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UserProfileLinkedInViewController : UIViewController 12 | @property (nonatomic, strong) NSString *linkedInProfileUrlAddress; 13 | @property (nonatomic, weak) IBOutlet UIWebView *socialWebView; 14 | 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /candpiosapp/Checkin/UIButton+AnimatedClockHand.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIButton+AnimatedClockHand.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/4/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIButton (AnimatedClockHand) 12 | 13 | -(void)addClockHand; 14 | 15 | -(void)toggleAnimationOfClockHand:(BOOL)animating; 16 | 17 | -(void)refreshButtonStateFromCheckinStatus; 18 | -(void)refreshButtonStateWithBoolean:(BOOL)checkedIn; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /candpiosapp/Login/EnterInvitationCodeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // EnterInvitationCodeViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Tomáš Horáček on 4/6/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | @interface EnterInvitationCodeViewController : UIViewController 10 | 11 | @property (nonatomic, assign) BOOL dontShowTextNoticeAfterLaterButtonPressed; 12 | @property (nonatomic, assign) BOOL isPushedFromLeft; 13 | @property (nonatomic, assign) BOOL emailConfirmationRequired; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /candpiosapp/Utils/CPLinkedInAPI.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPLinkedInAPI.h 3 | // candpiosapp 4 | // 5 | // Created by Tomáš Horáček on 5/23/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "OAMutableURLRequest.h" 10 | 11 | @interface CPLinkedInAPI : NSObject 12 | 13 | @property (nonatomic, readonly) OAToken *token; 14 | @property (nonatomic, readonly) OAConsumer *consumer; 15 | 16 | + (CPLinkedInAPI *)shared; 17 | - (OAMutableURLRequest *)linkedInJSONAPIRequestWithRelativeURL:(NSString *)urlString; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /candpiosapp/mustaches/ProfileBackground.mustache: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/TPKeyboardAvoiding/TPKeyboardAvoidingScrollView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TPKeyboardAvoidingScrollView.h 3 | // 4 | // Created by Michael Tyson on 11/04/2011. 5 | // Copyright 2011 A Tasty Pixel. All rights reserved. 6 | // 7 | 8 | @interface TPKeyboardAvoidingScrollView : UIScrollView { 9 | UIEdgeInsets _priorInset; 10 | BOOL _priorInsetSaved; 11 | BOOL _keyboardVisible; 12 | CGRect _keyboardRect; 13 | CGSize _originalContentSize; 14 | } 15 | 16 | - (void)adjustOffsetToIdealIfNeeded; 17 | @end 18 | -------------------------------------------------------------------------------- /candpiosapp/Login/SignupController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SignupController.h 3 | // candpiosapp 4 | // 5 | // Created by David Mojdehi on 1/11/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BaseLoginController.h" 11 | 12 | @interface SignupController : BaseLoginController 13 | - (IBAction)loginWithLinkedInTapped:(id)sender; 14 | 15 | @property (weak, nonatomic) IBOutlet UIButton *linkedinLoginButton; 16 | @property (weak, nonatomic) IBOutlet UIButton *dismissButton; 17 | 18 | - (IBAction) dismissClick:(id)sender; 19 | @end 20 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/MKStoreKit/MKStoreKitConfigs.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Consumables 6 | 7 | com.coffeeandpower.love1 8 | 9 | Count 10 | 1 11 | Name 12 | com.coffeeandpower.love1 13 | 14 | 15 | Non-Consumables 16 | 17 | Subscriptions 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/TapkuLibrary-subset/License.txt: -------------------------------------------------------------------------------- 1 | Licensed under the Apache License, Version 2.0 (the "License"); 2 | you may not use this file except in compliance with the License. 3 | You may obtain a copy of the License at 4 |   5 |    http://www.apache.org/licenses/LICENSE-2.0 6 |   7 | Unless required by applicable law or agreed to in writing, software 8 | distributed under the License is distributed on an "AS IS" BASIS, 9 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | See the License for the specific language governing permissions and 11 | limitations under the License. -------------------------------------------------------------------------------- /candpiosapp/Chat/OneOnOneChatHistory.h: -------------------------------------------------------------------------------- 1 | // 2 | // OneOnOneChatHistory.h 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/03/09. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "ChatHistory.h" 10 | 11 | @interface OneOnOneChatHistory : ChatHistory 12 | 13 | @property (nonatomic, strong) User *myUser; 14 | @property (nonatomic, strong) User *otherUser; 15 | 16 | - (id)initWithMyUser:(User *)myUser 17 | andOtherUser:(User *)otherUser; 18 | 19 | - (void)loadChatHistoryWithSuccessBlock:(void (^)())successfulLoading; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /candpiosapp/Feed/cells/PostLoveCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // PostLoveCell.m 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/22/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "PostLoveCell.h" 10 | #import "UIImage+Resize.h" 11 | 12 | @implementation PostLoveCell 13 | 14 | @synthesize receiverProfileButton = _receiverProfileButton; 15 | 16 | - (void)prepareForReuse 17 | { 18 | [super prepareForReuse]; 19 | [self.receiverProfileButton setBackgroundImage:[CPUIHelper defaultProfileImage] forState:UIControlStateNormal]; 20 | } 21 | 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /candpiosapp/Chat/ChatHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // ChatHelper.h 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/02/23. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ChatHelper : NSObject 12 | 13 | + (void)respondToIncomingChatNotification:(NSString *)message 14 | fromNickname:(NSString *)nickname 15 | fromUserId:(NSInteger)userId 16 | withRootView:(UIViewController *)rootView; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /candpiosapp/Checkin/CheckInListTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CheckInListTableViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 2/17/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | 8 | #import 9 | 10 | @interface CheckInListTableViewController : UITableViewController { 11 | NSMutableArray *places; 12 | } 13 | 14 | @property (nonatomic, retain) NSMutableArray *places; 15 | @property BOOL refreshLocationsNow; 16 | 17 | - (IBAction)closeWindow:(id)sender; 18 | - (void)refreshLocations; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /candpiosapp/Skills/CPSkill.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPSkill.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/24/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CPSkill : NSObject 12 | 13 | @property (nonatomic, assign) NSUInteger skillID; 14 | @property (nonatomic, strong) NSString *name; 15 | @property (nonatomic, assign) BOOL isVisible; 16 | @property (nonatomic, assign) int loveCount; 17 | @property (nonatomic, strong) NSString *rank; 18 | 19 | - (CPSkill *)initFromDictionary:(NSDictionary *)skillDict; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /candpiosapp/Checkin/CheckInDetailsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CheckInDetailsViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 2/17/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPVenue.h" 11 | 12 | @interface CheckInDetailsViewController : UIViewController 13 | 14 | @property (nonatomic, assign) id delegate; 15 | @property (nonatomic, strong) CPVenue *place; 16 | @property (nonatomic, assign) bool checkInIsVirtual; 17 | 18 | -(void)userImageButtonPressed:(UIButton *)sender; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /candpiosapp/mustaches/UserResume-badges.mustache: -------------------------------------------------------------------------------- 1 | 2 | {{#user}} 3 | {{#hasAnyBadges}} 4 |

Smarterer Badges

5 |
6 | {{#badges}} 7 |
8 | 9 |
10 | {{/badges}} 11 |
12 |
13 | {{/hasAnyBadges}} 14 | {{/user}} 15 | 16 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/SDImageCacheDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // SDImageCacheDelegate.h 3 | // Dailymotion 4 | // 5 | // Created by Olivier Poitrey on 16/09/10. 6 | // Copyright 2010 Dailymotion. All rights reserved. 7 | // 8 | 9 | #import "SDWebImageCompat.h" 10 | 11 | @class SDImageCache; 12 | 13 | @protocol SDImageCacheDelegate 14 | 15 | @optional 16 | - (void)imageCache:(SDImageCache *)imageCache didFindImage:(UIImage *)image forKey:(NSString *)key userInfo:(NSDictionary *)info; 17 | - (void)imageCache:(SDImageCache *)imageCache didNotFindImageForKey:(NSString *)key userInfo:(NSDictionary *)info; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /candpiosapp/Venue/VenueCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // VenueCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 21.3.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface VenueCell : UITableViewCell 12 | 13 | @property (weak, nonatomic) IBOutlet UIImageView *venuePicture; 14 | 15 | @property (weak, nonatomic) IBOutlet UILabel *venueName; 16 | @property (weak, nonatomic) IBOutlet UILabel *venueAddress; 17 | @property (weak, nonatomic) IBOutlet UILabel *venueDistance; 18 | @property (weak, nonatomic) IBOutlet UILabel *venueCheckins; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /candpiosapp/User/UserProfileViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // UserProfileViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 2/1/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | #define kRequestToAddToMyContactsActionSheetTitle @"Request to exchange contact info?" 12 | 13 | @interface UserProfileViewController : UIViewController 14 | 15 | @property (nonatomic, strong) User *user; 16 | @property (assign, nonatomic) BOOL isF2FInvite; 17 | 18 | - (IBAction)f2fInvite; 19 | - (void)placeUserDataOnProfile; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /candpiosapp/Settings/AutoCheckinCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // AutoCheckinCell.h 3 | // candpiosapp 4 | // 5 | // Created by Emmanuel Crouvisier on 5/8/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPVenue.h" 11 | 12 | @interface AutoCheckinCell : UITableViewCell 13 | 14 | @property (nonatomic, weak) IBOutlet UILabel *venueName; 15 | @property (nonatomic, weak) IBOutlet UILabel *venueAddress; 16 | @property (nonatomic, weak) IBOutlet UISwitch *venueSwitch; 17 | @property (nonatomic, strong) CPVenue *venue; 18 | 19 | - (IBAction)venueSwitchChanged:(id)sender; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /candpiosapp/FaceToFace/FaceToFacePasswordInputViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FaceToFacePasswordInputViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 3/1/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "FaceToFaceAcceptDeclineViewController.h" 11 | 12 | @interface FaceToFacePasswordInputViewController : UIViewController 13 | 14 | @property (weak, nonatomic) IBOutlet UITextField *passwordField; 15 | @property (weak, nonatomic) IBOutlet UILabel *waitLabel; 16 | @property (weak, nonatomic) IBOutlet UINavigationItem *navigationItem; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/OAuthConsumerARC/README: -------------------------------------------------------------------------------- 1 | This is an iPhone ready version of: 2 | http://oauth.googlecode.com/svn/code/obj-c/OAuthConsumer/ 3 | 4 | "iPhone ready" simply means you just need to add the files to Xcode, and import "OAuthConsumer.h". 5 | 6 | If you're rolling with the iPhone: 7 | 8 | 1) Be sure to add Security.framework. 9 | 2) Include libxml2.dylib in your frameworks. You also need to add a 10 | build property to the project -- "header search paths" needs to 11 | include "$SDKROOT/usr/include/libxml2" with "Recursive" checked. 12 | 13 | Be sure to include sys/types.h. 14 | 15 | Questions? E-mail me. jonathan at my initials (jdg) dot net. -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/SDWebImageManagerDelegate.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | @class SDWebImageManager; 10 | @class UIImage; 11 | 12 | @protocol SDWebImageManagerDelegate 13 | 14 | @optional 15 | 16 | - (void)webImageManager:(SDWebImageManager *)imageManager didFinishWithImage:(UIImage *)image; 17 | - (void)webImageManager:(SDWebImageManager *)imageManager didFailWithError:(NSError *)error; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/TableViewHelper/Readme.mdown: -------------------------------------------------------------------------------- 1 | TableViewHelper 2 | ============= 3 | 4 | Utility classes for simple in-app Settings pages. 5 | 6 | CAUTION: Under construction! 7 | 8 | 9 | Directions: 10 | 1. Copy the four helper classes into your project 11 | 12 | 2. Create a Table View Controller 13 | 14 | 15 | 3. Edit your New Class 16 | Change your new class to inherit from TableViewControllerHelper (not UITableViewController) 17 | Remove the default table view controller methods. 18 | 19 | 4. In your viewDidLoad, add descriptions of the cells you want, and (optionally) their data sources. 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /candpiosapp/Navigation/CPTabBarControllerView.m: -------------------------------------------------------------------------------- 1 | // 2 | // CPTabBarControllerView.m 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 7/13/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "CPTabBarControllerView.h" 10 | 11 | @implementation CPTabBarControllerView 12 | 13 | - (id)initWithFrame:(CGRect)frame 14 | { 15 | self = [super initWithFrame:frame]; 16 | if (self) { 17 | // Initialization code 18 | } 19 | return self; 20 | } 21 | 22 | - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 23 | { 24 | NSLog(@"FUCKING TOUCHES MAN!"); 25 | } 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/OAuthConsumerARC/OAAttachment.m: -------------------------------------------------------------------------------- 1 | // 2 | // OAAttachment.h 3 | // Zeus 4 | // 5 | // Created by Jamie Pinkham on 2/3/11. 6 | // Copyright 2011 Tumblr. All rights reserved. 7 | // 8 | 9 | #import "OAAttachment.h" 10 | 11 | @implementation OAAttachment 12 | 13 | @synthesize name, fileName, contentType, data; 14 | 15 | - (id)initWithName:(NSString *)aName filename:(NSString *)aFilename contentType:(NSString *)aContentType data:(NSData *)aData{ 16 | if((self = [super init])){ 17 | self.name = aName; 18 | self.fileName = aFilename; 19 | self.contentType = aContentType; 20 | self.data = aData; 21 | } 22 | return self; 23 | } 24 | 25 | @end -------------------------------------------------------------------------------- /candpiosapp/User/UserListTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // UserListTableViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Emmanuel Crouvisier on 1/11/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPUserActionCell.h" 11 | #import "CPBaseTableViewController.h" 12 | 13 | @interface UserListTableViewController : CPBaseTableViewController 14 | 15 | @property (nonatomic, retain) NSMutableArray *weeklyUsers; 16 | @property (nonatomic, retain) NSMutableArray *checkedInUsers; 17 | 18 | 19 | - (void)refreshFromNewMapData:(NSNotification *)notification; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /candpiosapp/Navigation/CPTabBarController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPTabBarController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 4/2/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPThinTabBar.h" 11 | 12 | @interface CPTabBarController : UITabBarController 13 | 14 | @property (nonatomic, strong) NSString *currentVenueID; 15 | @property (nonatomic, readonly) CPThinTabBar *thinBar; 16 | 17 | - (IBAction)tabBarButtonPressed:(id)sender; 18 | - (IBAction)updateButtonPressed:(id)sender; 19 | - (IBAction)checkinButtonPressed:(id)sender; 20 | - (void)questionButtonPressed:(id)sender; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /candpiosapp/Common/CPBaseTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPBaseTableViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/18/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPUserActionCell.h" 11 | 12 | @interface CPBaseTableViewController : UITableViewController 13 | 14 | @property (nonatomic, strong) UIActivityIndicatorView *barSpinner; 15 | @property (nonatomic, assign) id delegate; 16 | 17 | - (void)placeSpinnerOnRightBarButtonItem; 18 | - (void)showCorrectLoadingSpinnerForCount:(int)count; 19 | - (void)stopAppropriateLoadingSpinner; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /candpiosapp/Login/BaseLoginController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseLoginController.h 3 | // candpiosapp 4 | // 5 | // Created by Andrew Hammond on 2/28/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BaseLoginController : UIViewController 12 | 13 | @property (nonatomic, strong) AFHTTPClient *httpClient; 14 | 15 | +(void) pushAliasUpdate; 16 | 17 | -(void) handleCommonCreate:(NSString*)username 18 | password:(NSString*)password 19 | nickname:(NSString*)nickname 20 | facebookId:(NSString*)facebookId 21 | completion:(void (^)(NSError *error, id JSON))completion; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /candpiosapp/Contacts/ContactListViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ContactListViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Fredrik Enestad on 2012-03-19. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "ContactListCell.h" 10 | #import "CPBaseTableViewController.h" 11 | 12 | #define kNumberOfContactRequestsNotification @"kNumberOfContactRequestsNotification" 13 | 14 | @interface ContactListViewController : CPBaseTableViewController 15 | 16 | @property (nonatomic, retain) NSMutableArray *contacts; 17 | @property (nonatomic, retain) NSMutableArray *contactRequests; 18 | @property (nonatomic, retain) IBOutlet UISearchBar *searchBar; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /candpiosapp/mustaches/TermsOfService.mustache: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 |
25 | {{&terms}} 26 |
27 | 28 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/UI/Default/Inbox/Classes/Shared/UABeveledLoadingIndicator.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | /** 5 | * An abstraction around a nicer looking 6 | * loading indicator that embeds a UIActivityIndicatorView 7 | * in a translucent black beveled rect. 8 | */ 9 | @interface UABeveledLoadingIndicator : UIView { 10 | 11 | UIActivityIndicatorView *activity; 12 | 13 | } 14 | 15 | /** 16 | * Construct an autoreleased UABeveledLoadingIndicator with 17 | * a container rect size of 100 x 100. 18 | */ 19 | + (UABeveledLoadingIndicator *)indicator; 20 | 21 | /** 22 | * Show and animate the indicator 23 | */ 24 | - (void)show; 25 | 26 | /** 27 | * Hide the indicator. 28 | */ 29 | - (void)hide; 30 | 31 | @end 32 | -------------------------------------------------------------------------------- /candpiosapp/Payment/AddFundsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AddFundsViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 02.3.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AddFundsViewController : UIViewController { 12 | IBOutlet UIWebView *webView; 13 | NSString *urlAddress; 14 | UIActivityIndicatorView *activityIndicator; 15 | } 16 | 17 | @property (nonatomic, retain) UIWebView *webView; 18 | @property (nonatomic, retain) NSString *urlAddress; 19 | @property (nonatomic, retain) UIActivityIndicatorView *activityIndicator; 20 | 21 | -(IBAction)goBack:(id)sender; 22 | - (IBAction)closeWindow:(id)sender; 23 | 24 | @end -------------------------------------------------------------------------------- /candpiosapp/3rdParty/OAuthConsumerARC/OAAttachment.h: -------------------------------------------------------------------------------- 1 | // 2 | // OAAttachment.h 3 | // Zeus 4 | // 5 | // Created by Jamie Pinkham on 2/3/11. 6 | // Copyright 2011 Tumblr. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface OAAttachment : NSObject { 13 | NSString *name; 14 | NSString *fileName; 15 | NSString *contentType; 16 | NSData *data; 17 | } 18 | 19 | @property (nonatomic, copy) NSString *name; 20 | @property (nonatomic, copy) NSString *fileName; 21 | @property (nonatomic, copy) NSString *contentType; 22 | @property (nonatomic, copy) NSData *data; 23 | 24 | - (id)initWithName:(NSString *)aName filename:(NSString *)aFilename contentType:(NSString *)aContentType data:(NSData *)aData; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/SDWebImageDownloaderDelegate.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import "SDWebImageCompat.h" 10 | 11 | @class SDWebImageDownloader; 12 | 13 | @protocol SDWebImageDownloaderDelegate 14 | 15 | @optional 16 | 17 | - (void)imageDownloaderDidFinish:(SDWebImageDownloader *)downloader; 18 | - (void)imageDownloader:(SDWebImageDownloader *)downloader didFinishWithImage:(UIImage *)image; 19 | - (void)imageDownloader:(SDWebImageDownloader *)downloader didFailWithError:(NSError *)error; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /candpiosapp/Common/CPSoundEffectsManager.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPSoundEffectsManager.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/29/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | // original credit goes to http://blog.danilocampos.com/2009/12/14/an-objective-c-wrapper-for-audioservicesplaysystemsound/ 10 | 11 | #import 12 | #import 13 | 14 | @interface CPSoundEffectsManager : NSObject 15 | 16 | + (void)playSoundWithSystemSoundID:(SystemSoundID)soundID; 17 | + (void)disposeOfSoundWithSystemSoundID:(SystemSoundID)soundID; 18 | + (SystemSoundID)systemSoundIDForSoundWithName:(NSString *)fileName type:(NSString *)fileExt; 19 | + (void)vibrateDevice; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /candpiosapp/Feed/cells/FeedPreviewHeaderCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // FeedPreviewHeaderCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 7/17/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | 10 | @class FeedPreviewHeaderCell; 11 | 12 | @protocol FeedPreviewHeaderCellDelegate 13 | 14 | - (void)removeButtonPressed:(FeedPreviewHeaderCell *)cell; 15 | 16 | @end 17 | 18 | 19 | @interface FeedPreviewHeaderCell : UITableViewCell 20 | 21 | @property (nonatomic, assign) IBOutlet UILabel *venueNameLabel; 22 | @property (nonatomic, assign) IBOutlet UILabel *relativeTimeLabel; 23 | @property (nonatomic, weak) IBOutlet UIButton *removeButton; 24 | @property (nonatomic, weak) id delegate; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /candpiosapp/Common/CPSwipeableTableViewCell/CPUserAction.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPUserAction.h 3 | // candpiosapp 4 | // 5 | // Created by Andrew Hammond on 7/10/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPUserActionCell.h" 11 | 12 | @interface CPUserAction : NSObject 13 | + (void)cell:(CPUserActionCell*)cell sendLoveFromViewController:(UIViewController*)viewController; 14 | + (void)cell:(CPUserActionCell*)cell sendMessageFromViewController:(UIViewController*)viewController; 15 | + (void)cell:(CPUserActionCell*)cell exchangeContactsFromViewController:(UIViewController*)viewController; 16 | + (void)cell:(CPUserActionCell*)cell showProfileFromViewController:(UIViewController*)viewController; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Pickers/DistancePickerView.h: -------------------------------------------------------------------------------- 1 | // 2 | // DistancePickerView.h 3 | // 4 | // Created by Evan on 12/27/10. 5 | // Copyright 2010 NCPTT. All rights reserved. 6 | // 7 | // Adapted from LabeledPickerView by Kåre Morstøl (NotTooBad Software). 8 | // This file only Copyright (c) 2009 Kåre Morstøl (NotTooBad Software). 9 | // This file only under the Eclipse public license v1.0 10 | // http://www.eclipse.org/legal/epl-v10.html 11 | 12 | #import 13 | 14 | 15 | @interface DistancePickerView : UIPickerView { 16 | NSMutableDictionary *labels; 17 | } 18 | 19 | - (void) addLabel:(NSString *)labeltext forComponent:(NSUInteger)component forLongestString:(NSString *)longestString; 20 | - (void) updateLabel:(NSString *)labeltext forComponent:(NSUInteger)component; 21 | @end 22 | -------------------------------------------------------------------------------- /candpiosapp/Chat/ChatMessageCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // ChatMessageCell.m 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/02/29. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "ChatMessageCell.h" 10 | 11 | @implementation ChatMessageCell 12 | 13 | - (id)initWithStyle:(UITableViewCellStyle)style 14 | reuseIdentifier:(NSString *)reuseIdentifier 15 | { 16 | self = [super initWithStyle:style 17 | reuseIdentifier:reuseIdentifier]; 18 | if (self) { 19 | // Initialization code 20 | } 21 | return self; 22 | } 23 | 24 | - (void)setSelected:(BOOL)selected animated:(BOOL)animated 25 | { 26 | [super setSelected:selected animated:animated]; 27 | 28 | // Configure the view for the selected state 29 | } 30 | 31 | @end 32 | -------------------------------------------------------------------------------- /candpiosapp/Payment/WalletCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // WalletCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 05.3.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface WalletCell : UITableViewCell 12 | 13 | @property (nonatomic, assign) CGFloat extraHeight; 14 | 15 | @property (weak, nonatomic) IBOutlet UILabel *amountLabel; 16 | @property (weak, nonatomic) IBOutlet UILabel *nicknameLabel; 17 | @property (weak, nonatomic) IBOutlet UILabel *dateLabel; 18 | @property (weak, nonatomic) IBOutlet UILabel *descriptionLabel; 19 | 20 | @property (weak, nonatomic) IBOutlet UIImageView *profileImage; 21 | @property (weak, nonatomic) IBOutlet UIImageView *stateImage; 22 | 23 | + (float)CELL_HEIGHT; 24 | + (float)DESCRIPTION_HEIGHT; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /candpiosapp/Utils/CPUtils.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPUtils.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 2/6/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface CPUtils : NSObject 13 | 14 | + (NSString *)localizedDistanceStringForDistance:(double)distance; 15 | + (NSString *)localizedDistanceBetweenLocationA:(CLLocation *)locationA 16 | andLocationB:(CLLocation *)locationB; 17 | + (NSString *)localizedDistanceofLocationA:(CLLocation *)locationA awayFromLocationB:(CLLocation *)locationB; 18 | + (NSString *)localizedDistanceStringFromMiles:(double)miles; 19 | 20 | + (NSString *)relativeTimeStringFromDateToNow:(NSDate *)date; 21 | 22 | + (BOOL)validateEmailWithString:(NSString*)email; 23 | @end 24 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/MKAnnotationView+WebCache.h: -------------------------------------------------------------------------------- 1 | // 2 | // MKAnnotationView+WebCache.h 3 | // customMapAnnotation 4 | // 5 | // Created by Mohith K M on 9/26/11. 6 | // Copyright 2011 Mokriya (www.mokriya.com). All rights reserved. 7 | // 8 | 9 | #import "SDWebImageCompat.h" 10 | #import "SDWebImageManagerDelegate.h" 11 | #import "MapKit/MapKit.h" 12 | 13 | @interface MKAnnotationView (WebCache) 14 | 15 | - (void)setPin:(NSInteger)number hasCheckins:(BOOL)checkins hasVirtual:(BOOL)virtual isSolar:(BOOL)solar withLabel:(BOOL)withLabel; 16 | - (void)setImage:(UIImage *)image fancy:(BOOL)fancyImage; 17 | - (void)setImageWithURL:(NSURL *)url; 18 | - (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder fancy:(BOOL)fancyImage; 19 | - (void)cancelCurrentImageLoad; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /candpiosapp/Common/CPPlaceholderTextView.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPPlaceholderTextView.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/21/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | // credit where credit is due 10 | // taken directly from code at http://stackoverflow.com/questions/1328638/placeholder-in-uitextview 11 | 12 | #import 13 | 14 | @interface CPPlaceholderTextView : UITextView { 15 | NSString *placeholder; 16 | UIColor *placeholderColor; 17 | 18 | @private 19 | UILabel *placeHolderLabel; 20 | } 21 | 22 | @property (nonatomic, retain) UILabel *placeHolderLabel; 23 | @property (nonatomic, retain) NSString *placeholder; 24 | @property (nonatomic, retain) UIColor *placeholderColor; 25 | 26 | -(void)textChanged:(NSNotification*)notification; 27 | 28 | @end -------------------------------------------------------------------------------- /candpiosapp/Feed/cells/PostBaseCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // PostBaseCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/12/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPUserActionCell.h" 11 | #import "CPPost.h" 12 | 13 | @interface PostBaseCell : CPUserActionCell 14 | 15 | @property (nonatomic, assign) IBOutlet UIButton *senderProfileButton; 16 | @property (nonatomic, assign) IBOutlet UILabel *entryLabel; 17 | @property (nonatomic, strong) CPPost* post; 18 | @property (nonatomic, strong) UIButton *plusButton; 19 | @property (nonatomic, strong) UILabel *likeCountLabel; 20 | @property (nonatomic, strong) UIImageView *likeCountBubble; 21 | 22 | - (void) addPlusWidget; 23 | - (void) changeLikeCountToValue:(int)value animated:(BOOL)animated; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /candpiosapp/candpiosapp-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'candpiosapp' target in the 'candpiosapp' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_5_0 8 | #warning "This project uses features only available in iOS SDK 5.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #import "AFNetworking.h" 15 | #import "SVProgressHUD.h" 16 | #import "AppDelegate.h" 17 | #import "CPUIHelper.h" 18 | #import "CPConstants.h" 19 | #import "CPUserDefaultsHandler.h" 20 | #import "CPapi.h" 21 | #import "CPUtils.h" 22 | #import "User.h" 23 | #import "TestFlight.h" 24 | 25 | #define NSLog(__FORMAT__, ...) TFLog((@"%s [Line %d] " __FORMAT__), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__) 26 | #endif 27 | -------------------------------------------------------------------------------- /candpiosapp/Utils/FoursquareAPIRequest.h: -------------------------------------------------------------------------------- 1 | // 2 | // FoursquareAPIRequest.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 2/6/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface FoursquareAPIRequest: NSObject 13 | 14 | +(void)dictForVenueWithFoursquareID:(NSString *)foursquare_id 15 | :(void (^)(NSDictionary *dict, NSError *error))completion; 16 | 17 | +(void)getVenuesCloseToLocation:(CLLocation *)location 18 | :(void (^)(NSDictionary *dict, NSError *error))completion; 19 | 20 | +(void)addNewPlace:(NSString *)name atLocation:(CLLocation *)location 21 | :(void (^)(NSDictionary *dict, NSError *error))completion; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SBJson/Credits.md: -------------------------------------------------------------------------------- 1 | # Credits 2 | 3 | My thanks to the following people and organisations, without whom this 4 | library wouldn't be what it is today: 5 | 6 | * Andrew Hannon 7 | * Andrew W. Donoho 8 | * Andy Warwick 9 | * Ben Rimmington 10 | * Blake Seely 11 | * Gabriel Handford 12 | * George MacKerron 13 | * Greg Bolsinga 14 | * Hager Hu 15 | * Hiroshi Saito 16 | * Jens Alfke 17 | * Joerg Schwieder 18 | * John Engelhart 19 | * Konstantin Welke 20 | * Lloyd Hilaiel 21 | * Marc Lehmann 22 | * Michael Papp 23 | * Mike Monaco 24 | * Robin Lu 25 | * Sam Soffes 26 | * Sean Scanlon 27 | * The Adium Crew 28 | * Tobias Höhmann 29 | * Tod Karpinski 30 | * Ullrich Schäfer 31 | * Wolfgang Sourdeau 32 | * aethereal 33 | * boredzo 34 | * dewvinci 35 | * dmaclach 36 | * jinksys 37 | * lukef 38 | * renerattur 39 | 40 | (Please let me know if I've mistakenly omitted anyone.) 41 | -------------------------------------------------------------------------------- /candpiosapp/User/UserTableViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // UserTableViewCell.h 3 | // candpiosapp 4 | // 5 | // Created by Emmanuel Crouvisier on 1/15/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPUserActionCell.h" 11 | 12 | @class UserTableViewCell; 13 | 14 | @interface UserTableViewCell : CPUserActionCell 15 | 16 | 17 | @property (nonatomic, retain) IBOutlet UILabel *nicknameLabel; 18 | @property (nonatomic, retain) IBOutlet UILabel *categoryLabel; 19 | @property (nonatomic, retain) IBOutlet UILabel *statusLabel; 20 | @property (nonatomic, retain) IBOutlet UILabel *distanceLabel; 21 | @property (nonatomic, retain) IBOutlet UILabel *checkInLabel; 22 | @property (nonatomic, retain) IBOutlet UILabel *checkInCountLabel; 23 | @property (nonatomic, retain) IBOutlet UIImageView *profilePictureImageView; 24 | 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /candpiosapp/Payment/PaymentHelper.m: -------------------------------------------------------------------------------- 1 | // 2 | // CheckInHelper.m 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 26.2.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "PaymentHelper.h" 10 | 11 | @implementation PaymentHelper 12 | 13 | + (void)showPaymentReceivedAlertWithMessage:(NSString *)message 14 | { 15 | // the alert delegate will be the settings menu view controller 16 | UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Payment Recieved" 17 | message:message 18 | delegate:[CPAppDelegate settingsMenuController] 19 | cancelButtonTitle:@"OK" 20 | otherButtonTitles:@"Wallet", nil]; 21 | [alertView show]; 22 | } 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/External/UA_ZipFile-OC/UA_minizip/UA_mztools.h: -------------------------------------------------------------------------------- 1 | /* 2 | Additional tools for Minizip 3 | Code: Xavier Roche '2004 4 | License: Same as ZLIB (www.gzip.org) 5 | */ 6 | 7 | #ifndef _zip_tools_H 8 | #define _zip_tools_H 9 | 10 | #ifdef __cplusplus 11 | extern "C" { 12 | #endif 13 | 14 | #ifndef _ZLIB_H 15 | #include "zlib.h" 16 | #endif 17 | 18 | #include "UA_unzip.h" 19 | 20 | /* Repair a ZIP file (missing central directory) 21 | file: file to recover 22 | fileOut: output file after recovery 23 | fileOutTmp: temporary file name used for recovery 24 | */ 25 | extern int ZEXPORT UA_unzRepair(const char* file, 26 | const char* fileOut, 27 | const char* fileOutTmp, 28 | uLong* nRecovered, 29 | uLong* bytesRecovered); 30 | 31 | #endif 32 | -------------------------------------------------------------------------------- /candpiosapp/Checkin/CheckInListCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // CheckInListCell.m 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 2/27/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "CheckInListCell.h" 10 | 11 | @implementation CheckInListCell 12 | 13 | @synthesize venueName = _venueName; 14 | @synthesize venueAddress = _venueAddress; 15 | @synthesize distanceString = _distanceString; 16 | 17 | - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier 18 | { 19 | self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; 20 | if (self) { 21 | // Initialization code 22 | } 23 | return self; 24 | } 25 | 26 | - (void)setSelected:(BOOL)selected animated:(BOOL)animated 27 | { 28 | [super setSelected:selected animated:animated]; 29 | 30 | // Configure the view for the selected state 31 | } 32 | 33 | @end 34 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/UIImage-categories/UIImage+Resize.h: -------------------------------------------------------------------------------- 1 | // UIImage+Resize.h 2 | // Created by Trevor Harmon on 8/5/09. 3 | // Free for personal or commercial use, with or without modification. 4 | // No warranty is expressed or implied. 5 | 6 | // Extends the UIImage class to support resizing/cropping 7 | @interface UIImage (Resize) 8 | - (UIImage *)croppedImage:(CGRect)bounds; 9 | - (UIImage *)thumbnailImage:(NSInteger)thumbnailSize 10 | transparentBorder:(NSUInteger)borderSize 11 | cornerRadius:(NSUInteger)cornerRadius 12 | interpolationQuality:(CGInterpolationQuality)quality; 13 | - (UIImage *)resizedImage:(CGSize)newSize 14 | interpolationQuality:(CGInterpolationQuality)quality; 15 | - (UIImage *)resizedImageWithContentMode:(UIViewContentMode)contentMode 16 | bounds:(CGSize)bounds 17 | interpolationQuality:(CGInterpolationQuality)quality; 18 | @end 19 | -------------------------------------------------------------------------------- /candpiosapp/Checkin/CPCheckinHandler.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPCheckinHandler.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/26/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef enum { 12 | CPAfterCheckinActionNone, 13 | CPAfterCheckinActionShowFeed, 14 | CPAfterCheckinActionNewPost, 15 | CPAfterCheckinActionNewQuestion 16 | } CPAfterCheckinAction; 17 | 18 | @interface CPCheckinHandler : NSObject 19 | 20 | @property (nonatomic, assign) CPAfterCheckinAction afterCheckinAction; 21 | 22 | - (void)presentCheckinModalFromViewController:(UIViewController *)presentingViewController; 23 | - (void)handleSuccessfulCheckinToVenue:(CPVenue *)venue checkoutTime:(NSInteger)checkoutTime; 24 | - (void)queueLocalNotificationForVenue:(CPVenue *)venue checkoutTime:(NSInteger)checkoutTime; 25 | 26 | + (CPCheckinHandler *)sharedHandler; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /candpiosapp/Payment/PayUserViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // PayUserViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 18.2.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface PayUserViewController : UIViewController 12 | { 13 | IBOutlet UITextField *paymentAmount; 14 | IBOutlet UILabel *charsLeft; 15 | IBOutlet UILabel *payTo; 16 | __weak IBOutlet UITextField *paymentNote; 17 | __weak IBOutlet UIImageView *payeeImage; 18 | __weak IBOutlet UILabel *userBalance; 19 | __weak IBOutlet UIView *descriptionView; 20 | __weak IBOutlet UIButton *cancelButton; 21 | __weak IBOutlet UIButton *payButton; 22 | } 23 | 24 | @property (weak) User *user; 25 | 26 | - (IBAction)makePayment:(id)sender; 27 | - (IBAction)descriptionChanged:(id)sender; 28 | - (IBAction)closeView:(UIButton *)sender; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /candpiosapp/Utils/CPAlertView.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPAlertView.h 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/02/23. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | // I created this for the following use case: 9 | // - a chat message comes in from a certain user 10 | // - we show an alert for that chat with "View" and "Ignore" buttons 11 | // - if the user clicks 'View', how does the UIAlertView delegate know 12 | // which userId the chat was from? 13 | // - This subclass lets us attatch some data to the UIAlertView so we 14 | // can figure this out 15 | // Stolen from http://stackoverflow.com/questions/1063315/how-to-safely-pass-a-context-object-in-an-uialertview-delegate 16 | 17 | #import 18 | 19 | @interface CPAlertView : UIAlertView 20 | 21 | @property (nonatomic, retain) id context; 22 | @property (nonatomic, weak) UIViewController *rootView; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /candpiosapp/Chat/ChatMessage.h: -------------------------------------------------------------------------------- 1 | // 2 | // ChatMessage.h 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/02/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | @class User; 9 | 10 | #import 11 | 12 | @interface ChatMessage : NSObject 13 | 14 | @property (nonatomic, assign) BOOL fromMe; 15 | @property (nonatomic, strong) User *fromUser; 16 | @property (nonatomic, strong) User *toUser; 17 | @property (nonatomic, strong) NSString *message; 18 | @property (nonatomic, strong) NSDate *date; 19 | 20 | - (id)initWithMessage:(NSString *)newMessage 21 | toUser:(User *)toUser 22 | fromUser:(User *)fromUser; 23 | - (id)initWithMessage:(NSString *)newMessage 24 | toUser:(User *)toUser 25 | fromUser:(User *)fromUser 26 | date:(NSDate *)date; 27 | 28 | - (NSComparisonResult)compareDateWith:(ChatMessage *)message; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /candpiosapp/Login/LinkedInLoginController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LinkedInLoginController.h 3 | // candpiosapp 4 | // 5 | // Created by Andrew Hammond on 3/1/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "BaseLoginController.h" 10 | @class OAToken; 11 | 12 | @interface LinkedInLoginController : BaseLoginController 13 | @property (weak, nonatomic) IBOutlet UIWebView *myWebView; 14 | 15 | @property (nonatomic, retain) OAToken *requestToken; 16 | @property (nonatomic, retain) UIActivityIndicatorView *activityIndicator; 17 | 18 | - (void)initiateLogin; 19 | - (void)linkedInLogin; 20 | - (void)loadLinkedInUserProfile; 21 | - (void)loadLinkedInConnectionsWithCompletion:(void(^)(void))completionBlock; 22 | - (void)handleLinkedInLogin:(NSString*)fullName linkedinID:(NSString *)linkedinID password:(NSString*)password email:(NSString *)email oauthToken:(NSString *)oauthToken oauthSecret:(NSString *)oauthSecret; 23 | @end 24 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/External/UA_Base64.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Matt Gallagher on 2009/06/03. 3 | // Copyright 2009-2010Matt Gallagher. All rights reserved. 4 | // 5 | // Permission is given to use this source code file, free of charge, in any 6 | // project, commercial or otherwise, entirely at your risk, with the condition 7 | // that any redistribution (in part or whole) of source code must retain 8 | // this copyright and permission notice. Attribution in compiled projects is 9 | // appreciated but not required. 10 | // 11 | 12 | #import 13 | 14 | void *UA_NewBase64Decode( 15 | const char *inputBuffer, 16 | size_t length, 17 | size_t *outputLength); 18 | 19 | char *UA_NewBase64Encode( 20 | const void *inputBuffer, 21 | size_t length, 22 | bool separateLines, 23 | size_t *outputLength); 24 | 25 | NSData* UA_dataFromBase64String(NSString* aString); 26 | NSString* UA_base64EncodedStringFromData(NSData* data); 27 | -------------------------------------------------------------------------------- /candpiosapp/User/UserLoveViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // UserLoveViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/21/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPPlaceholderTextView.h" 11 | 12 | #define ICON_IMAGE_VIEW_TAG 1238 13 | 14 | @interface UserLoveViewController : UIViewController 15 | @property (weak, nonatomic) id delegate; 16 | @property (strong, nonatomic) User *user; 17 | @property (weak, nonatomic) IBOutlet UIImageView *profilePicture; 18 | @property (weak, nonatomic) IBOutlet CPPlaceholderTextView *descriptionTextView; 19 | @property (weak, nonatomic) IBOutlet UINavigationBar *navigationBar; 20 | @property (weak, nonatomic) IBOutlet UITableView *tableView; 21 | @property (weak, nonatomic) IBOutlet UIView *loveBackground; 22 | 23 | - (IBAction)resumeCheckboxPressed:(UIButton *)sender; 24 | 25 | - (void)dismissHUD:(id)sender; 26 | - (void)purchaseLove; 27 | 28 | @end -------------------------------------------------------------------------------- /candpiosapp/Chat/ChatHistory.h: -------------------------------------------------------------------------------- 1 | // 2 | // ChatHistory.h 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/02/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "ChatMessage.h" 11 | 12 | @interface ChatHistory : NSObject 13 | 14 | @property (nonatomic, strong) NSMutableArray* messages; 15 | 16 | #pragma mark - Add to history 17 | // Add a message to the messages array for the given user 18 | - (void)addMessage:(ChatMessage *)message; 19 | // Inserts a message to the message array based on the timestamp 20 | - (void)insertMessage:(ChatMessage *)message; 21 | 22 | #pragma mark - Retrieve from history 23 | - (id)messageAtIndex:(NSUInteger)index; 24 | - (NSInteger)count; 25 | 26 | - (BOOL)isTimestampNecessaryBetween:(ChatMessage *)prevMessage 27 | andMessage:(ChatMessage *)nextMessage; 28 | 29 | #pragma mark - Misc functions 30 | 31 | - (void)sort; 32 | 33 | @end 34 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/External/UA_ZipFile-OC/UA_ZipArchive.h: -------------------------------------------------------------------------------- 1 | // 2 | // UA_ZipArchive.h 3 | // 4 | // 5 | // Created by aish on 08-9-11. 6 | // acsolu@gmail.com 7 | // Copyright 2008 Inc. All rights reserved. 8 | // 9 | 10 | #import 11 | 12 | #include "UA_zip.h" 13 | #include "UA_unzip.h" 14 | 15 | @protocol UA_ZipArchiveDelegate 16 | @optional 17 | -(void) ErrorMessage:(NSString*) msg; 18 | -(BOOL) OverWriteOperation:(NSString*) file; 19 | 20 | @end 21 | 22 | 23 | @interface UA_ZipArchive : NSObject { 24 | @private 25 | zipFile _zipFile; 26 | unzFile _unzFile; 27 | 28 | id _delegate; 29 | } 30 | 31 | @property (nonatomic, retain) id delegate; 32 | 33 | -(BOOL) CreateZipFile2:(NSString*) zipFile; 34 | -(BOOL) addFileToZip:(NSString*) file newname:(NSString*) newname; 35 | -(BOOL) CloseZipFile2; 36 | 37 | -(BOOL) UnzipOpenFile:(NSString*) zipFile; 38 | -(BOOL) UnzipFileTo:(NSString*) path overWrite:(BOOL) overwrite; 39 | -(BOOL) UnzipCloseFile; 40 | @end 41 | -------------------------------------------------------------------------------- /candpiosapp/Map/MapDataSet.h: -------------------------------------------------------------------------------- 1 | // 2 | // MapDataSet.h 3 | // candpiosapp 4 | // 5 | // Created by David Mojdehi on 1/17/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | #import 12 | 13 | @interface MapDataSet : NSObject 14 | 15 | 16 | @property (nonatomic, readonly, strong) NSArray *annotations; 17 | @property (nonatomic, strong) NSDate *dateLoaded; 18 | @property (nonatomic, assign) MKMapRect regionCovered; 19 | @property (nonatomic, assign) CLLocationCoordinate2D previousCenter; 20 | @property (nonatomic, strong) NSDictionary *activeUsers; 21 | @property (nonatomic, strong) NSDictionary *activeVenues; 22 | 23 | +(void)beginLoadingNewDataset:(CLLocationCoordinate2D)mapCenter 24 | completion:(void (^)(MapDataSet *set, NSError *error))completion; 25 | 26 | -(bool)isValidFor:(MKMapRect)newRegion 27 | mapCenter:(CLLocationCoordinate2D)mapCenter; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /candpiosapp/Payment/BalanceViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BalanceViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stojce Slavkovski on 23.2.12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BalanceViewController : UIViewController 12 | { 13 | @private 14 | BOOL isFlipped; 15 | BOOL loading; 16 | NSArray *transactions; 17 | NSInteger selectedIndex; 18 | float selectedHeight; 19 | } 20 | 21 | @property (weak, nonatomic) IBOutlet UITableView *transTableView; 22 | @property (weak, nonatomic) IBOutlet UILabel *userBalance; 23 | @property (weak, nonatomic) IBOutlet UIImageView *pullIcon; 24 | @property (weak, nonatomic) IBOutlet UILabel *pullDownLabel; 25 | @property (weak, nonatomic) IBOutlet UILabel *updateTimeLabel; 26 | @property (weak, nonatomic) IBOutlet UIScrollView *balanceScrollView; 27 | 28 | - (void)loadTransactionData; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /candpiosapp/Feed/cells/NewPostCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // NewPostCell.m 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/12/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "NewPostCell.h" 10 | 11 | @implementation NewPostCell 12 | 13 | @synthesize growingTextView = _growingTextView; 14 | 15 | - (void)awakeFromNib 16 | { 17 | [super awakeFromNib]; 18 | 19 | // set the required properties on the HPGrowingTextView 20 | self.growingTextView.internalTextView.contentInset = UIEdgeInsetsMake(0, -8, 0, 0); 21 | self.growingTextView.font = [UIFont systemFontOfSize:12]; 22 | self.growingTextView.textColor = [UIColor colorWithR:100 G:100 B:100 A:1]; 23 | self.growingTextView.backgroundColor = [UIColor clearColor]; 24 | self.growingTextView.minNumberOfLines = 1; 25 | self.growingTextView.maxNumberOfLines = 20; 26 | self.growingTextView.returnKeyType = UIReturnKeyDone; 27 | self.growingTextView.keyboardAppearance = UIKeyboardAppearanceAlert; 28 | } 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /candpiosapp/FaceToFace/FaceToFaceHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // FaceToFaceHelper.h 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/02/17. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "SettingsMenuController.h" 11 | 12 | @interface FaceToFaceHelper : NSObject 13 | 14 | // Handle an incoming F2F request 15 | // Present the 'greeted' with the option to Accept or Decline 16 | + (void)presentF2FInviteFromUser:(int) userId 17 | fromView:(SettingsMenuController *)view; 18 | 19 | // F2F has been accepted 20 | // Present the 'greeter' with the password to provide the 'greeted' 21 | + (void)presentF2FAcceptFromUser:(int) userId 22 | withPassword:(NSString *)password 23 | fromView:(SettingsMenuController *)view; 24 | 25 | // F2F is compelte. Congratulate both parties! 26 | + (void)presentF2FSuccessFrom:(NSString *) nickname 27 | fromView:(SettingsMenuController *) view; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /candpiosapp/Navigation/CPThinTabBar.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPThinTabBar.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/14/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPTabBarController.h" 11 | 12 | #define BUTTON_WIDTH 55 13 | #define LEFT_AREA_WIDTH 100 14 | 15 | typedef enum { 16 | CPThinTabBarActionButtonStatePlus, 17 | CPThinTabBarActionButtonStateMinus, 18 | CPThinTabBarActionButtonStateUpdate, 19 | CPThinTabBarActionButtonStateQuestion 20 | } CPThinTabBarActionButtonState; 21 | 22 | @interface CPThinTabBar : UITabBar 23 | 24 | @property (nonatomic, assign) UITabBarController *tabBarController; 25 | @property (nonatomic, strong) UIButton *actionButton; 26 | @property (nonatomic, assign) CPThinTabBarActionButtonState actionButtonState; 27 | 28 | - (void)moveGreenLineToSelectedIndex:(NSUInteger)selectedIndex; 29 | - (void)toggleRightSide:(BOOL)shown; 30 | - (void)refreshLastTab:(BOOL)loggedIn; 31 | 32 | + (UIImage *)backgroundImage; 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /candpiosapp/Common/CPUserDefaultsHandler.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPUserDefaultsHandler.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 7/3/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CPUserDefaultsHandler : NSObject 12 | 13 | + (void)setCurrentUser:(User *)currentUser; 14 | + (User *)currentUser; 15 | 16 | + (void)setCurrentVenue:(CPVenue *)venue; 17 | + (CPVenue *)currentVenue; 18 | 19 | + (void)setPastVenues:(NSArray *)pastVenues; 20 | + (NSArray *)pastVenues; 21 | 22 | + (void)setCheckoutTime:(NSInteger)checkoutTime; 23 | + (NSInteger)checkoutTime; 24 | + (BOOL)isUserCurrentlyCheckedIn; 25 | 26 | + (void)setLastLoggedAppVersion:(NSString *)appVersionString; 27 | + (NSString *)lastLoggedAppVersion; 28 | 29 | + (void)setAutomaticCheckins:(BOOL)on; 30 | + (BOOL)automaticCheckins; 31 | 32 | + (void)addFeedVenue:(CPVenue *)venue showFeedNow:(BOOL)showFeedNow; 33 | + (NSDictionary *)feedVenues; 34 | + (void)removeFeedVenueWithID:(NSUInteger)venueID; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /candpiosapp/Venue/VenueInfoViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // VenueInfoViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 3/26/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPVenue.h" 11 | 12 | @interface VenueInfoViewController : UIViewController 13 | 14 | @property (nonatomic, strong) CPVenue *venue; 15 | @property (weak, nonatomic) IBOutlet UIImageView *venuePhoto; 16 | @property (weak, nonatomic) IBOutlet UIView *firstAidSection; 17 | @property (weak, nonatomic) IBOutlet UIView *userSection; 18 | @property (weak, nonatomic) IBOutlet UIScrollView *scrollView; 19 | @property (strong, nonatomic) NSMutableDictionary *categoryCount; 20 | @property (strong, nonatomic) NSMutableDictionary *currentUsers; 21 | @property (strong, nonatomic) NSMutableArray *previousUsers; 22 | @property (strong, nonatomic) NSMutableSet *usersShown; 23 | @property (strong, nonatomic) NSMutableDictionary *userObjectsForUsersOnScreen; 24 | @property (nonatomic, assign) BOOL scrollToUserThumbnail; 25 | 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /candpiosapp/Utils/CPConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPConstants.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 3/9/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | // define a way to quickly grab the app delegate 12 | #define CPAppDelegate (AppDelegate *)[UIApplication sharedApplication].delegate 13 | 14 | @interface CPConstants : NSObject 15 | 16 | extern NSString* const kCandPWebServiceUrl; 17 | extern NSString* const kCandPAPIVersion; 18 | extern NSString* const kCandPAddFundsUrl; 19 | extern NSString* const kLinkedInKey; 20 | extern NSString* const kLinkedInSecret; 21 | extern NSString* const flurryAnalyticsKey; 22 | extern NSString* const kSmartererKey; 23 | extern NSString* const kSmartererSecret; 24 | extern NSString* const kSmartererCallback; 25 | extern NSString* const kTestFlightKey; 26 | extern NSString* const kUserVoiceSite; 27 | extern NSString* const kUserVoiceKey; 28 | extern NSString* const kUserVoiceSecret; 29 | 30 | extern int const kDefaultDismissDelay; 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /candpiosapp/Feed/FeedViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FeedViewController.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/12/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPVenueFeed.h" 11 | #import "CPUserActionCell.h" 12 | #import "FeedPreviewHeaderCell.h" 13 | 14 | @interface FeedViewController : UIViewController 15 | 16 | @property (nonatomic, assign) IBOutlet UITableView *tableView; 17 | @property (nonatomic, strong) CPVenueFeed *selectedVenueFeed; 18 | @property (nonatomic, assign) CPPostType postType; 19 | @property (nonatomic, strong) NSMutableArray *venueFeedPreviews; 20 | @property (nonatomic, strong) NSMutableArray *postableVenueFeeds; 21 | @property (nonatomic, assign) BOOL newPostAfterLoad; 22 | @property (nonatomic, strong) NSMutableDictionary *postPlussingUserIds; 23 | 24 | - (void)newPost; 25 | - (void)showOnlyPostableFeeds; 26 | 27 | + (UIView *)timelineViewWithHeight:(CGFloat)height; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * Created by james on 9/28/11. 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | #import 12 | #import "SDWebImageCompat.h" 13 | 14 | @protocol SDWebImageDecoderDelegate; 15 | 16 | @interface SDWebImageDecoder : NSObject 17 | { 18 | NSOperationQueue *imageDecodingQueue; 19 | } 20 | 21 | + (SDWebImageDecoder *)sharedImageDecoder; 22 | - (void)decodeImage:(UIImage *)image withDelegate:(id )delegate userInfo:(NSDictionary *)info; 23 | 24 | @end 25 | 26 | @protocol SDWebImageDecoderDelegate 27 | 28 | - (void)imageDecoder:(SDWebImageDecoder *)decoder didFinishDecodingImage:(UIImage *)image userInfo:(NSDictionary *)userInfo; 29 | 30 | @end 31 | 32 | @interface UIImage (ForceDecode) 33 | 34 | + (UIImage *)decodedImageWithImage:(UIImage *)image; 35 | 36 | @end -------------------------------------------------------------------------------- /candpiosapp/Feed/CPPost.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPPost.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 6/12/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CPSkill.h" 11 | 12 | typedef enum { 13 | CPPostTypeUpdate, 14 | CPPostTypeLove, 15 | CPPostTypeQuestion, 16 | CPPostTypeCheckin 17 | } CPPostType; 18 | 19 | @interface CPPost : NSObject 20 | 21 | @property (nonatomic, assign) NSUInteger postID; 22 | @property (nonatomic, strong) NSString *entry; 23 | @property (nonatomic, strong) User *author; 24 | @property (nonatomic, strong) NSDate *date; 25 | @property (nonatomic, assign) double *lat; 26 | @property (nonatomic, assign) double *lng; 27 | @property (nonatomic, strong) User *receiver; 28 | @property (nonatomic, strong) CPSkill *skill; 29 | @property (nonatomic, assign) CPPostType type; 30 | @property (nonatomic, assign) NSUInteger originalPostID; 31 | @property (nonatomic, assign) NSUInteger likeCount; 32 | @property (nonatomic, assign) BOOL userHasLiked; 33 | 34 | - (id)initFromDictionary:(NSDictionary *)postDict; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/TableViewHelper/LICENSE-MIT.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 mindfulbear.com 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated 4 | documentation files (the "Software"), to deal in the Software without restriction, including without limitation 5 | the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and 6 | to permit persons to whom the Software is furnished to do so, subject to the following conditions: 7 | 8 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of 9 | the Software. 10 | 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO 12 | THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 13 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 14 | CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 15 | IN THE SOFTWARE. 16 | 17 | -------------------------------------------------------------------------------- /candpiosapp/Contacts/ContactListCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ContactListCell.h 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/18/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "UserTableViewCell.h" 11 | 12 | @class ContactListCell; 13 | 14 | @protocol ContactListCellDelegate 15 | 16 | - (void)clickedAcceptButtonInUserTableViewCell:(ContactListCell *)contactListCell; 17 | - (void)clickedDeclineButtonInUserTableViewCell:(ContactListCell *)contactListCell; 18 | 19 | @end 20 | 21 | @interface ContactListCell : CPUserActionCell 22 | 23 | @property (nonatomic, assign) id contactListTVC; 24 | @property (nonatomic, assign) IBOutlet UIImageView *profilePicture; 25 | @property (nonatomic, assign) IBOutlet UILabel *nicknameLabel; 26 | @property (nonatomic, assign) IBOutlet UILabel *statusLabel; 27 | @property (nonatomic, retain) IBOutlet UIButton *acceptContactRequestButton; 28 | @property (nonatomic, retain) IBOutlet UIButton *declineContactRequestButton; 29 | 30 | - (IBAction)acceptButtonAction; 31 | - (IBAction)declineButtonAction; 32 | 33 | @end 34 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/External/UA_asi-http-request/UA_ASIInputStream.h: -------------------------------------------------------------------------------- 1 | // 2 | // ASIInputStream.h 3 | // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest 4 | // 5 | // Created by Ben Copsey on 10/08/2009. 6 | // Copyright 2009 All-Seeing Interactive. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class UA_ASIHTTPRequest; 12 | 13 | // This is a wrapper for NSInputStream that pretends to be an NSInputStream itself 14 | // Subclassing NSInputStream seems to be tricky, and may involve overriding undocumented methods, so we'll cheat instead. 15 | // It is used by UA_ASIHTTPRequest whenever we have a request body, and handles measuring and throttling the bandwidth used for uploading 16 | 17 | @interface UA_ASIInputStream : NSObject { 18 | NSInputStream *stream; 19 | UA_ASIHTTPRequest *request; 20 | } 21 | + (id)inputStreamWithFileAtPath:(NSString *)path request:(UA_ASIHTTPRequest *)request; 22 | + (id)inputStreamWithData:(NSData *)data request:(UA_ASIHTTPRequest *)request; 23 | 24 | @property (retain, nonatomic) NSInputStream *stream; 25 | @property (assign, nonatomic) UA_ASIHTTPRequest *request; 26 | @end 27 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Facebook-with-blocks/LICENSE-MIT.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012 mindfulbear.com 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated 4 | documentation files (the "Software"), to deal in the Software without restriction, including without limitation 5 | the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and 6 | to permit persons to whom the Software is furnished to do so, subject to the following conditions: 7 | 8 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of 9 | the Software. 10 | 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO 12 | THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 13 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 14 | CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 15 | IN THE SOFTWARE. 16 | 17 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009 Olivier Poitrey 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is furnished 8 | to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | 21 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import "SDWebImageCompat.h" 10 | #import "SDWebImageManagerDelegate.h" 11 | 12 | @interface UIButton (WebCache) 13 | 14 | /** 15 | * Set the imageView `image` with an `url`. 16 | * 17 | * The downloand is asynchronous and cached. 18 | * 19 | * @param url The url that the image is found. 20 | * @see setImageWithURL:placeholderImage: 21 | */ 22 | - (void)setImageWithURL:(NSURL *)url; 23 | 24 | /** 25 | * Set the imageView `image` with an `url` and a placeholder. 26 | * 27 | * The downloand is asynchronous and cached. 28 | * 29 | * @param url The url that the `image` is found. 30 | * @param placeholder A `image` that will be visible while loading the final image. 31 | */ 32 | - (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder; 33 | 34 | /** 35 | * Cancel the current download 36 | */ 37 | - (void)cancelCurrentImageLoad; 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /candpiosapp/FaceToFace/FaceToFaceAcceptDeclineViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FaceToFaceInviteController.h 3 | // candpiosapp 4 | // 5 | // Created by Alexi (Love Machine) on 2012/02/14. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "UserProfileViewController.h" 11 | 12 | @interface FaceToFaceAcceptDeclineViewController : UIViewController 13 | 14 | @property (strong, nonatomic) User *user; 15 | @property (weak, nonatomic) IBOutlet UIView *actionBar; 16 | @property (weak, nonatomic) IBOutlet UILabel *actionBarHeader; 17 | @property (weak, nonatomic) IBOutlet UIButton *f2fAcceptButton; 18 | @property (weak, nonatomic) IBOutlet UIButton *f2fDeclineButton; 19 | @property (weak, nonatomic) IBOutlet UIView *viewUnderToolbar; 20 | @property (weak, nonatomic) IBOutlet UITextField *passwordField; 21 | @property (weak, nonatomic) IBOutlet UIScrollView *scrollView; 22 | @property (weak, nonatomic) IBOutlet UINavigationBar *navigationBar; 23 | @property (strong, nonatomic) UserProfileViewController *userProfile; 24 | 25 | - (IBAction)acceptF2F; 26 | - (IBAction)declineF2F; 27 | - (void)cancelPasswordEntry:(id)sender; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /candpiosapp/Utils/Settings.h: -------------------------------------------------------------------------------- 1 | // 2 | // Settings.h 3 | // candpiosapp 4 | // 5 | // Created by David Mojdehi on 12/31/11. 6 | // Copyright (c) 2011 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface Settings : NSObject< NSCoding, NSCopying > 13 | 14 | @property (nonatomic, assign) bool flag; 15 | @property (nonatomic, assign) bool registeredForApnsSuccessfully; 16 | 17 | //@property (nonatomic, copy) NSString *candpLoginToken; 18 | 19 | // note: userEmailAddress is only valid if the created their account with an email address 20 | @property (nonatomic, copy) NSString *userEmailAddress; 21 | @property (nonatomic, copy) NSString *userPassword; 22 | @property (nonatomic, assign) float userBalance; 23 | 24 | //checkin notification settings 25 | @property (nonatomic, assign) bool notifyInVenueOnly; 26 | @property (nonatomic, assign) bool notifyWhenCheckedIn; 27 | // TODO: Don't store the userPassword here or in NSUserDefaults 28 | // it should be stored encrypted in the keychain 29 | 30 | // TODO: Store a user object (User.h) once the user is logged in instead of just storing an NSNumber which is the user ID 31 | 32 | 33 | @end 34 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import 10 | #import "SDImageCacheDelegate.h" 11 | 12 | @interface SDImageCache : NSObject 13 | { 14 | NSMutableDictionary *memCache; 15 | NSString *diskCachePath; 16 | NSOperationQueue *cacheInQueue, *cacheOutQueue; 17 | } 18 | 19 | + (SDImageCache *)sharedImageCache; 20 | - (void)storeImage:(UIImage *)image forKey:(NSString *)key; 21 | - (void)storeImage:(UIImage *)image forKey:(NSString *)key toDisk:(BOOL)toDisk; 22 | - (void)storeImage:(UIImage *)image imageData:(NSData *)data forKey:(NSString *)key toDisk:(BOOL)toDisk; 23 | - (UIImage *)imageFromKey:(NSString *)key; 24 | - (UIImage *)imageFromKey:(NSString *)key fromDisk:(BOOL)fromDisk; 25 | - (void)queryDiskCacheForKey:(NSString *)key delegate:(id )delegate userInfo:(NSDictionary *)info; 26 | 27 | - (void)removeImageForKey:(NSString *)key; 28 | - (void)clearMemory; 29 | - (void)clearDisk; 30 | - (void)cleanDisk; 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import "UIButton+WebCache.h" 10 | #import "SDWebImageManager.h" 11 | 12 | @implementation UIButton (WebCache) 13 | 14 | - (void)setImageWithURL:(NSURL *)url 15 | { 16 | [self setImageWithURL:url placeholderImage:nil]; 17 | } 18 | 19 | - (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder 20 | { 21 | SDWebImageManager *manager = [SDWebImageManager sharedManager]; 22 | 23 | // Remove in progress downloader from queue 24 | [manager cancelForDelegate:self]; 25 | 26 | [self setImage:placeholder forState:UIControlStateNormal]; 27 | 28 | if (url) 29 | { 30 | [manager downloadWithURL:url delegate:self]; 31 | } 32 | } 33 | 34 | - (void)cancelCurrentImageLoad 35 | { 36 | [[SDWebImageManager sharedManager] cancelForDelegate:self]; 37 | } 38 | 39 | - (void)webImageManager:(SDWebImageManager *)imageManager didFinishWithImage:(UIImage *)image 40 | { 41 | [self setImage:image forState:UIControlStateNormal]; 42 | } 43 | 44 | @end 45 | -------------------------------------------------------------------------------- /candpiosapp/User/UserTableViewCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // UserTableViewCell.m 3 | // candpiosapp 4 | // 5 | // Created by Emmanuel Crouvisier on 1/15/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "UserTableViewCell.h" 10 | #import "CPUIHelper.h" 11 | 12 | @implementation UserTableViewCell 13 | 14 | @synthesize nicknameLabel; 15 | @synthesize categoryLabel; 16 | @synthesize statusLabel; 17 | @synthesize distanceLabel; 18 | @synthesize checkInLabel; 19 | @synthesize checkInCountLabel; 20 | @synthesize profilePictureImageView; 21 | 22 | - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 23 | { 24 | // Return YES for supported orientations 25 | return (interfaceOrientation == UIInterfaceOrientationPortrait); 26 | } 27 | 28 | - (void)awakeFromNib 29 | { 30 | // call super's awakeFromNib so that this cell can be swipeable 31 | [super awakeFromNib]; 32 | 33 | self.contentView.backgroundColor = [UIColor colorWithRed:0.2 green:0.2 blue:0.2 alpha:1.0]; 34 | 35 | [CPUIHelper addShadowToView:self.profilePictureImageView color:[UIColor blackColor] offset:CGSizeMake(1, 1) radius:0.5 opacity:1.0]; 36 | 37 | [CPUIHelper changeFontForLabel:self.nicknameLabel toLeagueGothicOfSize:24]; 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SVPullToRefresh/SVPullToRefresh.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVPullToRefresh.h 3 | // 4 | // Created by Sam Vermette on 23.04.12. 5 | // Copyright (c) 2012 samvermette.com. All rights reserved. 6 | // 7 | // https://github.com/samvermette/SVPullToRefresh 8 | // 9 | 10 | #import 11 | 12 | @interface SVPullToRefresh : UIView 13 | 14 | @property (nonatomic, strong) UIColor *arrowColor; 15 | @property (nonatomic, strong) UIColor *textColor; 16 | @property (nonatomic, readwrite) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 17 | 18 | @property (nonatomic, strong) NSDate *lastUpdatedDate; 19 | @property (nonatomic, strong) NSDateFormatter *dateFormatter; 20 | 21 | - (void)triggerRefresh; 22 | - (void)startAnimating; 23 | - (void)stopAnimating; 24 | 25 | @end 26 | 27 | 28 | // extends UIScrollView 29 | 30 | @interface UIScrollView (SVPullToRefresh) 31 | 32 | - (void)addPullToRefreshWithActionHandler:(void (^)(void))actionHandler; 33 | - (void)addInfiniteScrollingWithActionHandler:(void (^)(void))actionHandler; 34 | 35 | @property (nonatomic, strong) SVPullToRefresh *pullToRefreshView; 36 | @property (nonatomic, strong) SVPullToRefresh *infiniteScrollingView; 37 | 38 | @property (nonatomic, assign) BOOL showsPullToRefresh; 39 | @property (nonatomic, assign) BOOL showsInfiniteScrolling; 40 | 41 | @end -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import 10 | #import "SDWebImageManagerDelegate.h" 11 | 12 | @interface SDWebImagePrefetcher : NSObject 13 | { 14 | NSArray *_prefetchURLs; 15 | NSUInteger _skippedCount; 16 | NSUInteger _finishedCount; 17 | NSUInteger _requestedCount; 18 | NSTimeInterval _startedTime; 19 | } 20 | 21 | /** 22 | * Maximum number of URLs to prefetch at the same time. Defaults to 3. 23 | */ 24 | @property (nonatomic, assign) NSUInteger maxConcurrentDownloads; 25 | 26 | + (SDWebImagePrefetcher *)sharedImagePrefetcher; 27 | 28 | /** 29 | * Assign list of URLs to let SDWebImagePrefetcher to queue the prefetching, 30 | * currently one image is downloaded at a time, 31 | * and skips images for failed downloads and proceed to the next image in the list 32 | * 33 | * @param NSArray list of URLs to prefetch 34 | */ 35 | - (void)prefetchURLs:(NSArray *)urls; 36 | 37 | 38 | /** 39 | * Remove and cancel queued list 40 | */ 41 | - (void)cancelPrefetching; 42 | 43 | 44 | @end 45 | -------------------------------------------------------------------------------- /candpiosapp/Feed/cells/FeedPreviewHeaderCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // FeedPreviewHeaderCell.m 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 7/17/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "FeedPreviewHeaderCell.h" 10 | 11 | 12 | @implementation FeedPreviewHeaderCell 13 | 14 | @synthesize venueNameLabel = _venueNameLabel; 15 | @synthesize relativeTimeLabel = _relativeTimeLabel; 16 | @synthesize removeButton = _removeButton; 17 | @synthesize delegate = _delegate; 18 | 19 | - (void)awakeFromNib { 20 | [super awakeFromNib]; 21 | 22 | [self.removeButton addTarget:self 23 | action:@selector(removeButtonAction) 24 | forControlEvents:UIControlEventTouchUpInside]; 25 | } 26 | 27 | - (void)prepareForReuse { 28 | [super prepareForReuse]; 29 | 30 | self.delegate = nil; 31 | 32 | // reset the frame of the venue name label 33 | self.venueNameLabel.frame = CGRectMake(self.venueNameLabel.frame.origin.x, 34 | self.venueNameLabel.frame.origin.y, 235, 35 | self.venueNameLabel.frame.size.height); 36 | } 37 | 38 | #pragma mark - actions 39 | 40 | - (void)removeButtonAction { 41 | [self.delegate removeButtonPressed:self]; 42 | } 43 | 44 | @end 45 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SA_ActionSheet/Readme.txt: -------------------------------------------------------------------------------- 1 | Read Me 2 | 3 | A quick and dirty subclass of UIActionSheet that allows you to fire off an action sheet with a block rather than a delegate. 4 | 5 | Released under the MIT license 6 | 7 | Copyright (C) 2011 by Ben Gottlieb 8 | 9 | Permission is hereby granted, free of charge, to any person obtaining a copy 10 | of this software and associated documentation files (the "Software"), to deal 11 | in the Software without restriction, including without limitation the rights 12 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 13 | copies of the Software, and to permit persons to whom the Software is 14 | furnished to do so, subject to the following conditions: 15 | 16 | The above copyright notice and this permission notice shall be included in 17 | all copies or substantial portions of the Software. 18 | 19 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 20 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 21 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 22 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 23 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 24 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 25 | THE SOFTWARE. 26 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/Airship/External/UA_asi-http-request/UA_ASIAuthenticationDialog.h: -------------------------------------------------------------------------------- 1 | // 2 | // ASIAuthenticationDialog.h 3 | // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest 4 | // 5 | // Created by Ben Copsey on 21/08/2009. 6 | // Copyright 2009 All-Seeing Interactive. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | @class UA_ASIHTTPRequest; 12 | 13 | typedef enum _UA_ASIAuthenticationType { 14 | UA_ASIStandardAuthenticationType = 0, 15 | UA_ASIProxyAuthenticationType = 1 16 | } UA_ASIAuthenticationType; 17 | 18 | @interface UA_ASIAutorotatingViewController : UIViewController 19 | @end 20 | 21 | @interface UA_ASIAuthenticationDialog : UA_ASIAutorotatingViewController { 22 | UA_ASIHTTPRequest *request; 23 | UA_ASIAuthenticationType type; 24 | UITableView *tableView; 25 | UIViewController *presentingController; 26 | BOOL didEnableRotationNotifications; 27 | } 28 | + (void)presentAuthenticationDialogForRequest:(UA_ASIHTTPRequest *)request; 29 | + (void)dismiss; 30 | 31 | @property (retain) UA_ASIHTTPRequest *request; 32 | @property (assign) UA_ASIAuthenticationType type; 33 | @property (assign) BOOL didEnableRotationNotifications; 34 | @property (retain, nonatomic) UIViewController *presentingController; 35 | @end 36 | -------------------------------------------------------------------------------- /candpiosapp/Settings/AutoCheckinCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // AutoCheckinCell.m 3 | // candpiosapp 4 | // 5 | // Created by Emmanuel Crouvisier on 5/8/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "AutoCheckinCell.h" 10 | 11 | @implementation AutoCheckinCell 12 | 13 | @synthesize venueName = _venueName; 14 | @synthesize venueAddress = _venueAddress; 15 | @synthesize venueSwitch = _venueSwitch; 16 | @synthesize venue; 17 | 18 | - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier 19 | { 20 | self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; 21 | if (self) { 22 | // Initialization code 23 | } 24 | return self; 25 | } 26 | 27 | - (void)setSelected:(BOOL)selected animated:(BOOL)animated 28 | { 29 | [super setSelected:selected animated:animated]; 30 | 31 | // Configure the view for the selected state 32 | } 33 | 34 | - (IBAction)venueSwitchChanged:(UISwitch *)sender 35 | { 36 | if (!sender.on) { 37 | venue.autoCheckin = NO; 38 | [CPAppDelegate stopMonitoringVenue:venue]; 39 | } 40 | else { 41 | venue.autoCheckin = YES; 42 | [CPAppDelegate startMonitoringVenue:venue]; 43 | } 44 | 45 | // Save the changes to pastVenues 46 | [CPAppDelegate updatePastVenue:venue]; 47 | } 48 | 49 | @end 50 | -------------------------------------------------------------------------------- /candpiosapp/Common/CPSoundEffectsManager.m: -------------------------------------------------------------------------------- 1 | // 2 | // CPSoundEffectsManager.m 3 | // candpiosapp 4 | // 5 | // Created by Stephen Birarda on 5/29/12. 6 | // Copyright (c) 2012 Coffee and Power Inc. All rights reserved. 7 | // 8 | 9 | #import "CPSoundEffectsManager.h" 10 | 11 | @implementation CPSoundEffectsManager 12 | 13 | + (void)playSoundWithSystemSoundID:(SystemSoundID)soundID 14 | { 15 | // play the sound effect 16 | AudioServicesPlaySystemSound(soundID); 17 | } 18 | 19 | + (void)disposeOfSoundWithSystemSoundID:(SystemSoundID)soundID 20 | { 21 | // dispose of the sound effect 22 | AudioServicesDisposeSystemSoundID(soundID); 23 | } 24 | 25 | + (SystemSoundID)systemSoundIDForSoundWithName:(NSString *)fileName type:(NSString *)fileExt 26 | { 27 | // Generate an NSURL from the fileName and extension 28 | NSString* path = [[NSBundle mainBundle] 29 | pathForResource:fileName ofType:fileExt]; 30 | NSURL* url = [NSURL fileURLWithPath:path]; 31 | 32 | // var for systemSoundID 33 | SystemSoundID effectID; 34 | 35 | // create the system sound ID for this effect 36 | AudioServicesCreateSystemSoundID((__bridge_retained CFURLRef)url, &effectID); 37 | 38 | return effectID; 39 | } 40 | 41 | + (void)vibrateDevice 42 | { 43 | AudioServicesPlaySystemSound(kSystemSoundID_Vibrate); 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /candpiosapp/3rdParty/SVProgressHUD/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 Sam Vermette 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | A different license may apply to other ressources included in this package, 25 | including Joseph Wain's Glyphish Icons. Please consult their 26 | respective headers for the terms of their individual licenses. --------------------------------------------------------------------------------