├── .gitignore ├── .ruby-version ├── .travis.yml ├── Assets └── atlas-github-header.png ├── Atlas.podspec ├── Atlas.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── ATLKit.xccheckout └── xcshareddata │ └── xcschemes │ ├── Atlas.xcscheme │ └── Programmatic.xcscheme ├── Atlas.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── Atlas.xcscmblueprint │ └── LayerUIKit.xccheckout ├── CHANGELOG.md ├── Cartfile ├── Cartfile.resolved ├── Carthage └── Info.plist ├── Code ├── Atlas.h ├── Atlas.m ├── Controllers │ ├── ATLAddressBarViewController.h │ ├── ATLAddressBarViewController.m │ ├── ATLBaseConversationViewController.h │ ├── ATLBaseConversationViewController.m │ ├── ATLConversationListViewController.h │ ├── ATLConversationListViewController.m │ ├── ATLConversationViewController.h │ ├── ATLConversationViewController.m │ ├── ATLParticipantTableViewController.h │ ├── ATLParticipantTableViewController.m │ ├── ATLTypingIndicatorViewController.h │ └── ATLTypingIndicatorViewController.m ├── Models │ ├── ATLConversationDataSource.h │ ├── ATLConversationDataSource.m │ ├── ATLDataSourceChange.h │ ├── ATLDataSourceChange.m │ ├── ATLMediaAttachment.h │ ├── ATLMediaAttachment.m │ ├── ATLParticipantTableDataSet.h │ └── ATLParticipantTableDataSet.m ├── Protocols │ ├── ATLAvatarItem.h │ ├── ATLConversationPresenting.h │ ├── ATLMessagePresenting.h │ ├── ATLParticipant.h │ └── ATLParticipantPresenting.h ├── Utilities │ ├── ATLConstants.h │ ├── ATLConstants.m │ ├── ATLErrors.h │ ├── ATLErrors.m │ ├── ATLLocationManager.h │ ├── ATLLocationManager.m │ ├── ATLMediaInputStream.h │ ├── ATLMediaInputStream.m │ ├── ATLMessagingUtilities.h │ ├── ATLMessagingUtilities.m │ ├── ATLUIImageHelper.h │ ├── ATLUIImageHelper.m │ ├── LYRIdentity+ATLParticipant.h │ ├── LYRIdentity+ATLParticipant.m │ ├── UIResponder+ATLFirstResponder.h │ └── UIResponder+ATLFirstResponder.m └── Views │ ├── ATLAddressBarContainerView.h │ ├── ATLAddressBarContainerView.m │ ├── ATLAddressBarTextView.h │ ├── ATLAddressBarTextView.m │ ├── ATLAddressBarView.h │ ├── ATLAddressBarView.m │ ├── ATLAvatarImageView.h │ ├── ATLAvatarImageView.m │ ├── ATLBaseCollectionViewCell.h │ ├── ATLBaseCollectionViewCell.m │ ├── ATLConversationCollectionView.h │ ├── ATLConversationCollectionView.m │ ├── ATLConversationCollectionViewFooter.h │ ├── ATLConversationCollectionViewFooter.m │ ├── ATLConversationCollectionViewHeader.h │ ├── ATLConversationCollectionViewHeader.m │ ├── ATLConversationCollectionViewMoreMessagesHeader.h │ ├── ATLConversationCollectionViewMoreMessagesHeader.m │ ├── ATLConversationTableViewCell.h │ ├── ATLConversationTableViewCell.m │ ├── ATLConversationView.h │ ├── ATLConversationView.m │ ├── ATLIncomingMessageCollectionViewCell.h │ ├── ATLIncomingMessageCollectionViewCell.m │ ├── ATLMessageBubbleView.h │ ├── ATLMessageBubbleView.m │ ├── ATLMessageCollectionViewCell.h │ ├── ATLMessageCollectionViewCell.m │ ├── ATLMessageComposeTextView.h │ ├── ATLMessageComposeTextView.m │ ├── ATLMessageInputToolbar.h │ ├── ATLMessageInputToolbar.m │ ├── ATLOutgoingMessageCollectionViewCell.h │ ├── ATLOutgoingMessageCollectionViewCell.m │ ├── ATLParticipantSectionHeaderView.h │ ├── ATLParticipantSectionHeaderView.m │ ├── ATLParticipantTableViewCell.h │ ├── ATLParticipantTableViewCell.m │ ├── ATLPlayView.h │ ├── ATLPlayView.m │ ├── ATLProgressView.h │ └── ATLProgressView.m ├── Examples ├── ATLSampleConversationAvatarItem.h ├── ATLSampleConversationAvatarItem.m ├── ATLSampleConversationListViewController.h ├── ATLSampleConversationListViewController.m ├── ATLSampleConversationViewController.h ├── ATLSampleConversationViewController.m ├── ATLSampleParticipantTableViewController.h ├── ATLSampleParticipantTableViewController.m ├── Mocks │ ├── ATLUserMock.h │ ├── ATLUserMock.m │ ├── LYRClientMock.h │ ├── LYRClientMock.m │ ├── LYRConversationMock.h │ ├── LYRConversationMock.m │ ├── LYRMessageMock.h │ ├── LYRMessageMock.m │ ├── LYRMessagePartMock.h │ ├── LYRMessagePartMock.m │ ├── LYRMockContentStore.h │ ├── LYRMockContentStore.m │ ├── LYRQueryControllerMock.h │ ├── LYRQueryControllerMock.m │ └── LayerKitMock.h ├── Programmatic │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── ProgrammaticAppDelegate.h │ ├── ProgrammaticAppDelegate.m │ └── main.m ├── Screenshots │ └── walkthrough.gif └── Storyboard │ ├── Atlas.storyboard │ ├── Base.lproj │ └── LaunchScreen.xib │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── StoryboardAppDelegate.h │ ├── StoryboardAppDelegate.m │ └── main.m ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── Rakefile ├── Resources ├── Info.plist ├── block.png ├── block@2x.png ├── block@3x.png ├── camera_dark.png ├── camera_dark@2x.png ├── camera_dark@3x.png ├── chevron.png ├── chevron@2x.png ├── chevron@3x.png ├── layerLogo.png ├── layerLogo@2x.png ├── layerLogo@3x.png ├── layerbell.caf ├── location_dark.png ├── location_dark@2x.png ├── location_dark@3x.png ├── plus.png ├── plus@2x.png └── plus@3x.png └── Tests ├── ALTAddressBarControllerTest.m ├── ATLConversationListViewControllerTest.m ├── ATLConversationTableViewCellTest.m ├── ATLConversationViewControllerTest.m ├── ATLMediaAttachmentTests.m ├── ATLMediaStreamTests.m ├── ATLMessageCollectionViewCellTest.m ├── ATLMessageCollectionViewCellTests.m ├── ATLMessageInputBarTest.m ├── ATLParticipantTableViewCellTest.m ├── ATLParticipantTableViewControllerTest.m ├── ATLTestClasses.h ├── ATLTestClasses.m ├── ATLTestInterface.h ├── ATLTestInterface.m ├── ATLTestUtilities.h ├── ATLTestUtilities.m ├── ATLUserMockTest.m ├── Info.plist ├── LYRClientMockTests.m ├── Resources ├── ProgrammaticTests-Info.plist ├── StoryboardTests-Info.plist ├── boatgif.gif └── test-logo.png └── Schemes └── Unit Tests.xcscheme /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/.travis.yml -------------------------------------------------------------------------------- /Assets/atlas-github-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Assets/atlas-github-header.png -------------------------------------------------------------------------------- /Atlas.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Atlas.podspec -------------------------------------------------------------------------------- /Atlas.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Atlas.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Atlas.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Atlas.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Atlas.xcodeproj/project.xcworkspace/xcshareddata/ATLKit.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Atlas.xcodeproj/project.xcworkspace/xcshareddata/ATLKit.xccheckout -------------------------------------------------------------------------------- /Atlas.xcodeproj/xcshareddata/xcschemes/Atlas.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Atlas.xcodeproj/xcshareddata/xcschemes/Atlas.xcscheme -------------------------------------------------------------------------------- /Atlas.xcodeproj/xcshareddata/xcschemes/Programmatic.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Atlas.xcodeproj/xcshareddata/xcschemes/Programmatic.xcscheme -------------------------------------------------------------------------------- /Atlas.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Atlas.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Atlas.xcworkspace/xcshareddata/Atlas.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Atlas.xcworkspace/xcshareddata/Atlas.xcscmblueprint -------------------------------------------------------------------------------- /Atlas.xcworkspace/xcshareddata/LayerUIKit.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Atlas.xcworkspace/xcshareddata/LayerUIKit.xccheckout -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "layerhq/releases-ios" 2 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "layerhq/releases-ios" "v0.19.1" 2 | -------------------------------------------------------------------------------- /Carthage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Carthage/Info.plist -------------------------------------------------------------------------------- /Code/Atlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Atlas.h -------------------------------------------------------------------------------- /Code/Atlas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Atlas.m -------------------------------------------------------------------------------- /Code/Controllers/ATLAddressBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLAddressBarViewController.h -------------------------------------------------------------------------------- /Code/Controllers/ATLAddressBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLAddressBarViewController.m -------------------------------------------------------------------------------- /Code/Controllers/ATLBaseConversationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLBaseConversationViewController.h -------------------------------------------------------------------------------- /Code/Controllers/ATLBaseConversationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLBaseConversationViewController.m -------------------------------------------------------------------------------- /Code/Controllers/ATLConversationListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLConversationListViewController.h -------------------------------------------------------------------------------- /Code/Controllers/ATLConversationListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLConversationListViewController.m -------------------------------------------------------------------------------- /Code/Controllers/ATLConversationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLConversationViewController.h -------------------------------------------------------------------------------- /Code/Controllers/ATLConversationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLConversationViewController.m -------------------------------------------------------------------------------- /Code/Controllers/ATLParticipantTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLParticipantTableViewController.h -------------------------------------------------------------------------------- /Code/Controllers/ATLParticipantTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLParticipantTableViewController.m -------------------------------------------------------------------------------- /Code/Controllers/ATLTypingIndicatorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLTypingIndicatorViewController.h -------------------------------------------------------------------------------- /Code/Controllers/ATLTypingIndicatorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Controllers/ATLTypingIndicatorViewController.m -------------------------------------------------------------------------------- /Code/Models/ATLConversationDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Models/ATLConversationDataSource.h -------------------------------------------------------------------------------- /Code/Models/ATLConversationDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Models/ATLConversationDataSource.m -------------------------------------------------------------------------------- /Code/Models/ATLDataSourceChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Models/ATLDataSourceChange.h -------------------------------------------------------------------------------- /Code/Models/ATLDataSourceChange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Models/ATLDataSourceChange.m -------------------------------------------------------------------------------- /Code/Models/ATLMediaAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Models/ATLMediaAttachment.h -------------------------------------------------------------------------------- /Code/Models/ATLMediaAttachment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Models/ATLMediaAttachment.m -------------------------------------------------------------------------------- /Code/Models/ATLParticipantTableDataSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Models/ATLParticipantTableDataSet.h -------------------------------------------------------------------------------- /Code/Models/ATLParticipantTableDataSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Models/ATLParticipantTableDataSet.m -------------------------------------------------------------------------------- /Code/Protocols/ATLAvatarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Protocols/ATLAvatarItem.h -------------------------------------------------------------------------------- /Code/Protocols/ATLConversationPresenting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Protocols/ATLConversationPresenting.h -------------------------------------------------------------------------------- /Code/Protocols/ATLMessagePresenting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Protocols/ATLMessagePresenting.h -------------------------------------------------------------------------------- /Code/Protocols/ATLParticipant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Protocols/ATLParticipant.h -------------------------------------------------------------------------------- /Code/Protocols/ATLParticipantPresenting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Protocols/ATLParticipantPresenting.h -------------------------------------------------------------------------------- /Code/Utilities/ATLConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLConstants.h -------------------------------------------------------------------------------- /Code/Utilities/ATLConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLConstants.m -------------------------------------------------------------------------------- /Code/Utilities/ATLErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLErrors.h -------------------------------------------------------------------------------- /Code/Utilities/ATLErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLErrors.m -------------------------------------------------------------------------------- /Code/Utilities/ATLLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLLocationManager.h -------------------------------------------------------------------------------- /Code/Utilities/ATLLocationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLLocationManager.m -------------------------------------------------------------------------------- /Code/Utilities/ATLMediaInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLMediaInputStream.h -------------------------------------------------------------------------------- /Code/Utilities/ATLMediaInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLMediaInputStream.m -------------------------------------------------------------------------------- /Code/Utilities/ATLMessagingUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLMessagingUtilities.h -------------------------------------------------------------------------------- /Code/Utilities/ATLMessagingUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLMessagingUtilities.m -------------------------------------------------------------------------------- /Code/Utilities/ATLUIImageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLUIImageHelper.h -------------------------------------------------------------------------------- /Code/Utilities/ATLUIImageHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/ATLUIImageHelper.m -------------------------------------------------------------------------------- /Code/Utilities/LYRIdentity+ATLParticipant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/LYRIdentity+ATLParticipant.h -------------------------------------------------------------------------------- /Code/Utilities/LYRIdentity+ATLParticipant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/LYRIdentity+ATLParticipant.m -------------------------------------------------------------------------------- /Code/Utilities/UIResponder+ATLFirstResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/UIResponder+ATLFirstResponder.h -------------------------------------------------------------------------------- /Code/Utilities/UIResponder+ATLFirstResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Utilities/UIResponder+ATLFirstResponder.m -------------------------------------------------------------------------------- /Code/Views/ATLAddressBarContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLAddressBarContainerView.h -------------------------------------------------------------------------------- /Code/Views/ATLAddressBarContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLAddressBarContainerView.m -------------------------------------------------------------------------------- /Code/Views/ATLAddressBarTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLAddressBarTextView.h -------------------------------------------------------------------------------- /Code/Views/ATLAddressBarTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLAddressBarTextView.m -------------------------------------------------------------------------------- /Code/Views/ATLAddressBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLAddressBarView.h -------------------------------------------------------------------------------- /Code/Views/ATLAddressBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLAddressBarView.m -------------------------------------------------------------------------------- /Code/Views/ATLAvatarImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLAvatarImageView.h -------------------------------------------------------------------------------- /Code/Views/ATLAvatarImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLAvatarImageView.m -------------------------------------------------------------------------------- /Code/Views/ATLBaseCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLBaseCollectionViewCell.h -------------------------------------------------------------------------------- /Code/Views/ATLBaseCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLBaseCollectionViewCell.m -------------------------------------------------------------------------------- /Code/Views/ATLConversationCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationCollectionView.h -------------------------------------------------------------------------------- /Code/Views/ATLConversationCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationCollectionView.m -------------------------------------------------------------------------------- /Code/Views/ATLConversationCollectionViewFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationCollectionViewFooter.h -------------------------------------------------------------------------------- /Code/Views/ATLConversationCollectionViewFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationCollectionViewFooter.m -------------------------------------------------------------------------------- /Code/Views/ATLConversationCollectionViewHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationCollectionViewHeader.h -------------------------------------------------------------------------------- /Code/Views/ATLConversationCollectionViewHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationCollectionViewHeader.m -------------------------------------------------------------------------------- /Code/Views/ATLConversationCollectionViewMoreMessagesHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationCollectionViewMoreMessagesHeader.h -------------------------------------------------------------------------------- /Code/Views/ATLConversationCollectionViewMoreMessagesHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationCollectionViewMoreMessagesHeader.m -------------------------------------------------------------------------------- /Code/Views/ATLConversationTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationTableViewCell.h -------------------------------------------------------------------------------- /Code/Views/ATLConversationTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationTableViewCell.m -------------------------------------------------------------------------------- /Code/Views/ATLConversationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationView.h -------------------------------------------------------------------------------- /Code/Views/ATLConversationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLConversationView.m -------------------------------------------------------------------------------- /Code/Views/ATLIncomingMessageCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLIncomingMessageCollectionViewCell.h -------------------------------------------------------------------------------- /Code/Views/ATLIncomingMessageCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLIncomingMessageCollectionViewCell.m -------------------------------------------------------------------------------- /Code/Views/ATLMessageBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLMessageBubbleView.h -------------------------------------------------------------------------------- /Code/Views/ATLMessageBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLMessageBubbleView.m -------------------------------------------------------------------------------- /Code/Views/ATLMessageCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLMessageCollectionViewCell.h -------------------------------------------------------------------------------- /Code/Views/ATLMessageCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLMessageCollectionViewCell.m -------------------------------------------------------------------------------- /Code/Views/ATLMessageComposeTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLMessageComposeTextView.h -------------------------------------------------------------------------------- /Code/Views/ATLMessageComposeTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLMessageComposeTextView.m -------------------------------------------------------------------------------- /Code/Views/ATLMessageInputToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLMessageInputToolbar.h -------------------------------------------------------------------------------- /Code/Views/ATLMessageInputToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLMessageInputToolbar.m -------------------------------------------------------------------------------- /Code/Views/ATLOutgoingMessageCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLOutgoingMessageCollectionViewCell.h -------------------------------------------------------------------------------- /Code/Views/ATLOutgoingMessageCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLOutgoingMessageCollectionViewCell.m -------------------------------------------------------------------------------- /Code/Views/ATLParticipantSectionHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLParticipantSectionHeaderView.h -------------------------------------------------------------------------------- /Code/Views/ATLParticipantSectionHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLParticipantSectionHeaderView.m -------------------------------------------------------------------------------- /Code/Views/ATLParticipantTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLParticipantTableViewCell.h -------------------------------------------------------------------------------- /Code/Views/ATLParticipantTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLParticipantTableViewCell.m -------------------------------------------------------------------------------- /Code/Views/ATLPlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLPlayView.h -------------------------------------------------------------------------------- /Code/Views/ATLPlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLPlayView.m -------------------------------------------------------------------------------- /Code/Views/ATLProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLProgressView.h -------------------------------------------------------------------------------- /Code/Views/ATLProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Code/Views/ATLProgressView.m -------------------------------------------------------------------------------- /Examples/ATLSampleConversationAvatarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/ATLSampleConversationAvatarItem.h -------------------------------------------------------------------------------- /Examples/ATLSampleConversationAvatarItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/ATLSampleConversationAvatarItem.m -------------------------------------------------------------------------------- /Examples/ATLSampleConversationListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/ATLSampleConversationListViewController.h -------------------------------------------------------------------------------- /Examples/ATLSampleConversationListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/ATLSampleConversationListViewController.m -------------------------------------------------------------------------------- /Examples/ATLSampleConversationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/ATLSampleConversationViewController.h -------------------------------------------------------------------------------- /Examples/ATLSampleConversationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/ATLSampleConversationViewController.m -------------------------------------------------------------------------------- /Examples/ATLSampleParticipantTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/ATLSampleParticipantTableViewController.h -------------------------------------------------------------------------------- /Examples/ATLSampleParticipantTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/ATLSampleParticipantTableViewController.m -------------------------------------------------------------------------------- /Examples/Mocks/ATLUserMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/ATLUserMock.h -------------------------------------------------------------------------------- /Examples/Mocks/ATLUserMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/ATLUserMock.m -------------------------------------------------------------------------------- /Examples/Mocks/LYRClientMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRClientMock.h -------------------------------------------------------------------------------- /Examples/Mocks/LYRClientMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRClientMock.m -------------------------------------------------------------------------------- /Examples/Mocks/LYRConversationMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRConversationMock.h -------------------------------------------------------------------------------- /Examples/Mocks/LYRConversationMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRConversationMock.m -------------------------------------------------------------------------------- /Examples/Mocks/LYRMessageMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRMessageMock.h -------------------------------------------------------------------------------- /Examples/Mocks/LYRMessageMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRMessageMock.m -------------------------------------------------------------------------------- /Examples/Mocks/LYRMessagePartMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRMessagePartMock.h -------------------------------------------------------------------------------- /Examples/Mocks/LYRMessagePartMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRMessagePartMock.m -------------------------------------------------------------------------------- /Examples/Mocks/LYRMockContentStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRMockContentStore.h -------------------------------------------------------------------------------- /Examples/Mocks/LYRMockContentStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRMockContentStore.m -------------------------------------------------------------------------------- /Examples/Mocks/LYRQueryControllerMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRQueryControllerMock.h -------------------------------------------------------------------------------- /Examples/Mocks/LYRQueryControllerMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LYRQueryControllerMock.m -------------------------------------------------------------------------------- /Examples/Mocks/LayerKitMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Mocks/LayerKitMock.h -------------------------------------------------------------------------------- /Examples/Programmatic/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Programmatic/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Examples/Programmatic/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Programmatic/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Programmatic/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Programmatic/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Examples/Programmatic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Programmatic/Info.plist -------------------------------------------------------------------------------- /Examples/Programmatic/ProgrammaticAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Programmatic/ProgrammaticAppDelegate.h -------------------------------------------------------------------------------- /Examples/Programmatic/ProgrammaticAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Programmatic/ProgrammaticAppDelegate.m -------------------------------------------------------------------------------- /Examples/Programmatic/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Programmatic/main.m -------------------------------------------------------------------------------- /Examples/Screenshots/walkthrough.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Screenshots/walkthrough.gif -------------------------------------------------------------------------------- /Examples/Storyboard/Atlas.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Storyboard/Atlas.storyboard -------------------------------------------------------------------------------- /Examples/Storyboard/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Storyboard/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Examples/Storyboard/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Storyboard/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Storyboard/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Storyboard/Info.plist -------------------------------------------------------------------------------- /Examples/Storyboard/StoryboardAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Storyboard/StoryboardAppDelegate.h -------------------------------------------------------------------------------- /Examples/Storyboard/StoryboardAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Storyboard/StoryboardAppDelegate.m -------------------------------------------------------------------------------- /Examples/Storyboard/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Examples/Storyboard/main.m -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Rakefile -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/block.png -------------------------------------------------------------------------------- /Resources/block@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/block@2x.png -------------------------------------------------------------------------------- /Resources/block@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/block@3x.png -------------------------------------------------------------------------------- /Resources/camera_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/camera_dark.png -------------------------------------------------------------------------------- /Resources/camera_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/camera_dark@2x.png -------------------------------------------------------------------------------- /Resources/camera_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/camera_dark@3x.png -------------------------------------------------------------------------------- /Resources/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/chevron.png -------------------------------------------------------------------------------- /Resources/chevron@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/chevron@2x.png -------------------------------------------------------------------------------- /Resources/chevron@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/chevron@3x.png -------------------------------------------------------------------------------- /Resources/layerLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/layerLogo.png -------------------------------------------------------------------------------- /Resources/layerLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/layerLogo@2x.png -------------------------------------------------------------------------------- /Resources/layerLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/layerLogo@3x.png -------------------------------------------------------------------------------- /Resources/layerbell.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/layerbell.caf -------------------------------------------------------------------------------- /Resources/location_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/location_dark.png -------------------------------------------------------------------------------- /Resources/location_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/location_dark@2x.png -------------------------------------------------------------------------------- /Resources/location_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/location_dark@3x.png -------------------------------------------------------------------------------- /Resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/plus.png -------------------------------------------------------------------------------- /Resources/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/plus@2x.png -------------------------------------------------------------------------------- /Resources/plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Resources/plus@3x.png -------------------------------------------------------------------------------- /Tests/ALTAddressBarControllerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ALTAddressBarControllerTest.m -------------------------------------------------------------------------------- /Tests/ATLConversationListViewControllerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLConversationListViewControllerTest.m -------------------------------------------------------------------------------- /Tests/ATLConversationTableViewCellTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLConversationTableViewCellTest.m -------------------------------------------------------------------------------- /Tests/ATLConversationViewControllerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLConversationViewControllerTest.m -------------------------------------------------------------------------------- /Tests/ATLMediaAttachmentTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLMediaAttachmentTests.m -------------------------------------------------------------------------------- /Tests/ATLMediaStreamTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLMediaStreamTests.m -------------------------------------------------------------------------------- /Tests/ATLMessageCollectionViewCellTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLMessageCollectionViewCellTest.m -------------------------------------------------------------------------------- /Tests/ATLMessageCollectionViewCellTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLMessageCollectionViewCellTests.m -------------------------------------------------------------------------------- /Tests/ATLMessageInputBarTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLMessageInputBarTest.m -------------------------------------------------------------------------------- /Tests/ATLParticipantTableViewCellTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLParticipantTableViewCellTest.m -------------------------------------------------------------------------------- /Tests/ATLParticipantTableViewControllerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLParticipantTableViewControllerTest.m -------------------------------------------------------------------------------- /Tests/ATLTestClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLTestClasses.h -------------------------------------------------------------------------------- /Tests/ATLTestClasses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLTestClasses.m -------------------------------------------------------------------------------- /Tests/ATLTestInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLTestInterface.h -------------------------------------------------------------------------------- /Tests/ATLTestInterface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLTestInterface.m -------------------------------------------------------------------------------- /Tests/ATLTestUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLTestUtilities.h -------------------------------------------------------------------------------- /Tests/ATLTestUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLTestUtilities.m -------------------------------------------------------------------------------- /Tests/ATLUserMockTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/ATLUserMockTest.m -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/LYRClientMockTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/LYRClientMockTests.m -------------------------------------------------------------------------------- /Tests/Resources/ProgrammaticTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/Resources/ProgrammaticTests-Info.plist -------------------------------------------------------------------------------- /Tests/Resources/StoryboardTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/Resources/StoryboardTests-Info.plist -------------------------------------------------------------------------------- /Tests/Resources/boatgif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/Resources/boatgif.gif -------------------------------------------------------------------------------- /Tests/Resources/test-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/Resources/test-logo.png -------------------------------------------------------------------------------- /Tests/Schemes/Unit Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/Atlas-iOS/HEAD/Tests/Schemes/Unit Tests.xcscheme --------------------------------------------------------------------------------