├── LICENSE.txt ├── README ├── README.md └── TeamTalk ├── DDAppDelegate.h ├── DDAppDelegate.m ├── IOSDuoduo Tests ├── IOSDuoduo Tests-Info.plist ├── IOSDuoduo Tests-Prefix.pch ├── IOSDuoduo_Tests.m └── en.lproj │ └── InfoPlist.strings ├── IOSDuoduo ├── Category │ ├── NSDate+DDAddition.h │ ├── NSDate+DDAddition.m │ ├── NSDictionary+JSON.h │ ├── NSDictionary+JSON.m │ ├── NSDictionary+Safe.h │ ├── NSDictionary+Safe.m │ ├── NSIndexSet+AQIndexesOutsideSet.h │ ├── NSIndexSet+AQIndexesOutsideSet.m │ ├── NSIndexSet+AQIsSetContiguous.h │ ├── NSIndexSet+AQIsSetContiguous.m │ ├── NSObject+Property.h │ ├── NSObject+Property.m │ ├── NSString+Additions.h │ ├── NSString+Additions.m │ ├── NSString+DDPath.h │ ├── NSString+DDPath.m │ ├── NSString+JSMessagesView.h │ ├── NSString+JSMessagesView.m │ ├── UIButton+JSMessagesView.h │ ├── UIButton+JSMessagesView.m │ ├── UIColor+AQGridView.h │ ├── UIColor+AQGridView.m │ ├── UIColor+JSMessagesView.h │ ├── UIColor+JSMessagesView.m │ ├── UIImage+JSMessagesView.h │ ├── UIImage+JSMessagesView.m │ ├── UIView+AnimationOptionsForCurve.h │ ├── UIView+AnimationOptionsForCurve.m │ ├── UIView+DDAddition.h │ └── UIView+DDAddition.m ├── DDCONSTANT.h ├── DDSearch.h ├── DDSearch.m ├── Entity │ ├── DDBaseEntity.h │ ├── DDBaseEntity.m │ ├── DDGroupEntity.h │ ├── DDGroupEntity.m │ ├── DDMessageEntity.h │ ├── DDMessageEntity.m │ ├── DDSessionEntity.h │ ├── DDSessionEntity.m │ ├── DDUserEntity.h │ └── DDUserEntity.m ├── IMBaseDefine.pb.h ├── IMBaseDefine.pb.m ├── IMClient2ServBase.pb.h ├── IMClient2ServBase.pb.m ├── IMClient2ServFile.pb.h ├── IMClient2ServFile.pb.m ├── IMClient2ServGroup.pb.h ├── IMClient2ServGroup.pb.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── 29px@1x.png │ │ ├── 29px@2x.png │ │ ├── 40px@2x.png │ │ ├── 57px@1x.png │ │ ├── 57px@2x.png │ │ ├── 60px@2x.png │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── MD5.h ├── MD5.m ├── Module │ ├── DDGroupModule.h │ ├── DDGroupModule.m │ ├── DataBase │ │ ├── DDDatabaseUtil.h │ │ └── DDDatabaseUtil.m │ ├── Http │ │ ├── DDAFClient.h │ │ └── DDAFClient.m │ ├── Login │ │ ├── DDHttpServer.h │ │ ├── DDHttpServer.m │ │ ├── DDLoginServer.h │ │ ├── DDLoginServer.m │ │ ├── DDMsgServer.h │ │ ├── DDMsgServer.m │ │ ├── DDTcpServer.h │ │ ├── DDTcpServer.m │ │ ├── DDTokenManager.h │ │ └── DDTokenManager.m │ ├── Messages │ │ ├── DDMessageModule.h │ │ ├── DDMessageModule.m │ │ ├── DDMessageSendManager.h │ │ └── DDMessageSendManager.m │ └── Users │ │ ├── DDUserModule.h │ │ └── DDUserModule.m ├── SpellLibrary.h ├── SpellLibrary.m ├── StateMaintance │ ├── DDClientState.h │ ├── DDClientState.m │ ├── DDClientStateMaintenanceManager.h │ └── DDClientStateMaintenanceManager.m ├── SundriesCenter │ ├── DDNotificationHelp.h │ ├── DDNotificationHelp.m │ ├── DDSundriesCenter.h │ └── DDSundriesCenter.m ├── TCPAPI │ ├── DDAPISchedule.h │ ├── DDAPISchedule.m │ ├── DDAPIScheduleProtocol.h │ ├── DDAPIUnrequestScheduleProtocol.h │ ├── DDAddMemberToGroupAPI.h │ ├── DDAddMemberToGroupAPI.m │ ├── DDAllUserAPI.h │ ├── DDAllUserAPI.m │ ├── DDCreateGroupAPI.h │ ├── DDCreateGroupAPI.m │ ├── DDDataInputStream.h │ ├── DDDataInputStream.m │ ├── DDDataOutputStream.h │ ├── DDDataOutputStream.m │ ├── DDDepartmentAPI.h │ ├── DDDepartmentAPI.m │ ├── DDFixedGroupAPI.h │ ├── DDFixedGroupAPI.m │ ├── DDGroupInfoAPI.h │ ├── DDGroupInfoAPI.m │ ├── DDGroupMsgReadACKAPI.h │ ├── DDGroupMsgReadACKAPI.m │ ├── DDGroupMsgReceivedACKAPI.h │ ├── DDGroupMsgReceivedACKAPI.m │ ├── DDGroupsUnreadMessageAPI.h │ ├── DDGroupsUnreadMessageAPI.m │ ├── DDReachability.h │ ├── DDReachability.m │ ├── DDReceiveFixedGroupMemberChanged.h │ ├── DDReceiveFixedGroupMemberChanged.m │ ├── DDReceiveGroupAddMemberAPI.h │ ├── DDReceiveGroupAddMemberAPI.m │ ├── DDRecentGroupAPI.h │ ├── DDRecentGroupAPI.m │ ├── DDSendBuffer.h │ ├── DDSendBuffer.m │ ├── DDSuperAPI.h │ ├── DDSuperAPI.m │ ├── DDTcpClientManager.h │ ├── DDTcpClientManager.m │ ├── DDTcpProtocolHeader.h │ ├── DDTcpProtocolHeader.m │ ├── DDUnreadMessageGroupAPI.h │ ├── DDUnreadMessageGroupAPI.m │ ├── DDUnrequestSuperAPI.h │ ├── DDUnrequestSuperAPI.m │ ├── DDepartment.h │ ├── DDepartment.m │ ├── DataOutputStream+Addition.h │ ├── DataOutputStream+Addition.m │ ├── NSStream+NSStreamAddition.h │ ├── NSStream+NSStreamAddition.m │ ├── RequestAPI │ │ ├── Login │ │ │ ├── DDHeartbeatAPI.h │ │ │ ├── DDHeartbeatAPI.m │ │ │ ├── DDLoginAPI.h │ │ │ ├── DDLoginAPI.m │ │ │ ├── DDMsgServerIPAPI.h │ │ │ └── DDMsgServerIPAPI.m │ │ ├── Msg │ │ │ ├── DDGetUnreadMessageUsersAPI.h │ │ │ ├── DDGetUnreadMessageUsersAPI.m │ │ │ ├── DDGetUserUnreadMessagesAPI.h │ │ │ ├── DDGetUserUnreadMessagesAPI.m │ │ │ ├── DDSendMessageAPI.h │ │ │ ├── DDSendMessageAPI.m │ │ │ ├── DDSendMessageReadACKAPI.h │ │ │ ├── DDSendMessageReadACKAPI.m │ │ │ ├── DDSendPhotoMessageAPI.h │ │ │ ├── DDSendPhotoMessageAPI.m │ │ │ ├── DDSendVoiceMessageAPI.h │ │ │ └── DDSendVoiceMessageAPI.m │ │ ├── Users │ │ │ ├── DDAllotServiceAPI.h │ │ │ ├── DDAllotServiceAPI.m │ │ │ ├── DDGetUserInfoAPI.h │ │ │ ├── DDGetUserInfoAPI.m │ │ │ ├── RecentConactsAPI.h │ │ │ └── RecentConactsAPI.m │ │ └── cinfo │ │ │ ├── DDCinfoRequestAPI.h │ │ │ └── DDCinfoRequestAPI.m │ └── UnrequestAPI │ │ ├── Kickoff │ │ ├── ReceiveKickoffAPI.h │ │ └── ReceiveKickoffAPI.m │ │ └── Msg │ │ ├── DDReceiveMessageACKAPI.h │ │ ├── DDReceiveMessageACKAPI.m │ │ ├── DDReceiveMessageAPI.h │ │ └── DDReceiveMessageAPI.m ├── TeamTalk-Prefix.pch ├── ThridFramework │ ├── AQ │ │ ├── AQGridView+CellLayout.h │ │ ├── AQGridView+CellLocationDelegation.h │ │ ├── AQGridView.h │ │ ├── AQGridView.m │ │ ├── AQGridViewAnimatorItem.h │ │ ├── AQGridViewAnimatorItem.m │ │ ├── AQGridViewCell+AQGridViewCellPrivate.h │ │ ├── AQGridViewCell.h │ │ ├── AQGridViewCell.m │ │ ├── AQGridViewController.h │ │ ├── AQGridViewController.m │ │ ├── AQGridViewData.h │ │ ├── AQGridViewData.m │ │ ├── AQGridViewUpdateInfo.h │ │ ├── AQGridViewUpdateInfo.m │ │ ├── AQGridViewUpdateItem.h │ │ └── AQGridViewUpdateItem.m │ └── MW │ │ ├── MWCaptionView.h │ │ ├── MWCaptionView.m │ │ ├── MWCommon.h │ │ ├── MWGridCell.h │ │ ├── MWGridCell.m │ │ ├── MWGridViewController.h │ │ ├── MWGridViewController.m │ │ ├── MWPhoto.h │ │ ├── MWPhoto.m │ │ ├── MWPhotoBrowser.h │ │ ├── MWPhotoBrowser.m │ │ ├── MWPhotoBrowserPrivate.h │ │ ├── MWPhotoProtocol.h │ │ ├── MWTapDetectingImageView.h │ │ ├── MWTapDetectingImageView.m │ │ ├── MWTapDetectingView.h │ │ ├── MWTapDetectingView.m │ │ ├── MWZoomingScrollView.h │ │ └── MWZoomingScrollView.m ├── ToRemove │ ├── JSDismissiveTextView.h │ ├── JSDismissiveTextView.m │ ├── JSMessageInputView.h │ ├── JSMessageInputView.m │ ├── JSMessageTextView.h │ ├── JSMessageTextView.m │ └── little_minus.png ├── VC │ ├── AlbumDetailsBottomBar.h │ ├── AlbumDetailsBottomBar.m │ ├── Chatting │ │ ├── AnalysisImage.h │ │ ├── AnalysisImage.m │ │ ├── Cells │ │ │ ├── DDChatBaseCell.h │ │ │ ├── DDChatBaseCell.m │ │ │ ├── DDChatCellProtocol.h │ │ │ ├── DDChatImageCell.h │ │ │ ├── DDChatImageCell.m │ │ │ ├── DDChatImagePreviewViewController.h │ │ │ ├── DDChatImagePreviewViewController.m │ │ │ ├── DDChatTextCell.h │ │ │ ├── DDChatTextCell.m │ │ │ ├── DDChatTextCell.xib │ │ │ ├── DDChatVoiceCell.h │ │ │ ├── DDChatVoiceCell.m │ │ │ ├── DDPromptCell.h │ │ │ └── DDPromptCell.m │ │ ├── ChatEditTableViewCell.h │ │ ├── ChatEditTableViewCell.m │ │ ├── ChatUtility │ │ │ ├── AlbumViewController.h │ │ │ ├── AlbumViewController.m │ │ │ ├── ChatUtilityItem.h │ │ │ ├── ChatUtilityItem.m │ │ │ ├── ChatUtilityViewController.h │ │ │ ├── ChatUtilityViewController.m │ │ │ ├── DDAlbumDetailsViewControll.h │ │ │ ├── DDAlbumDetailsViewControll.m │ │ │ ├── EmojiFaceView.h │ │ │ ├── EmojiFaceView.m │ │ │ ├── EmotionsModule.h │ │ │ ├── EmotionsModule.m │ │ │ ├── EmotionsViewController.h │ │ │ ├── EmotionsViewController.m │ │ │ ├── UtililyItemCell.h │ │ │ └── UtililyItemCell.m │ │ ├── ChattingEditModule.h │ │ ├── ChattingEditModule.m │ │ ├── ChattingMainViewController.h │ │ ├── ChattingMainViewController.m │ │ ├── ChattingMainViewController.xib │ │ ├── ChattingModule.h │ │ ├── ChattingModule.m │ │ ├── CommodityCell.h │ │ ├── CommodityCell.m │ │ ├── CommodityCell.xib │ │ ├── DDChattingEditViewController.h │ │ ├── DDChattingEditViewController.m │ │ ├── DDChattingEditViewController.xib │ │ ├── DDPersonEditCollectionCell.h │ │ ├── DDPersonEditCollectionCell.m │ │ ├── EditGroupViewCell.h │ │ ├── EditGroupViewCell.m │ │ ├── EditGroupViewController.h │ │ ├── EditGroupViewController.m │ │ ├── EditGroupViewController.xib │ │ ├── MenuImageView.h │ │ ├── MenuImageView.m │ │ ├── RecordingView.h │ │ ├── RecordingView.m │ │ ├── TouchDownGestureRecognizer.h │ │ └── TouchDownGestureRecognizer.m │ ├── ClearImageCacheViewController.h │ ├── ClearImageCacheViewController.m │ ├── ClearImageCacheViewController.xib │ ├── ClearImageCell.h │ ├── ClearImageCell.m │ ├── ContactAvatarTools.h │ ├── ContactAvatarTools.m │ ├── ContactsModule.h │ ├── ContactsModule.m │ ├── ContactsViewController.h │ ├── ContactsViewController.m │ ├── DDContactsCell.h │ ├── DDContactsCell.m │ ├── ImageGridViewCell.h │ ├── ImageGridViewCell.m │ ├── ImagesPreviewViewController.h │ ├── ImagesPreviewViewController.m │ ├── LoginModule.h │ ├── LoginModule.m │ ├── MainViewControll.h │ ├── MainViewControll.m │ ├── MainViewControll.xib │ ├── MyProfileViewControll.h │ ├── MyProfileViewControll.m │ ├── MyProfileViewControll.xib │ ├── Photo.h │ ├── Photo.m │ ├── PhotosCache.h │ ├── PhotosCache.m │ ├── PublicProfileViewControll.h │ ├── PublicProfileViewControll.m │ ├── PublicProfileViewControll.xib │ ├── QuickReplyView.h │ ├── QuickReplyView.m │ ├── RecentContacts │ │ ├── RecentUserCell.h │ │ ├── RecentUserCell.m │ │ ├── RecentUserCell.xib │ │ ├── RecentUserVCModule.h │ │ ├── RecentUserVCModule.m │ │ ├── RecentUsersViewController.h │ │ ├── RecentUsersViewController.m │ │ └── RecentUsersViewController.xib │ ├── SettingViewController.h │ ├── SettingViewController.m │ ├── SettingViewController.xib │ └── minus-sign.png ├── Voice │ ├── Code │ │ └── Libs │ │ │ ├── config.h │ │ │ ├── libogg │ │ │ ├── bitwise.c │ │ │ ├── framing.c │ │ │ └── ogg │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ └── libspeex │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── arch.h │ │ │ ├── bits.c │ │ │ ├── buffer.c │ │ │ ├── cb_search.c │ │ │ ├── cb_search.h │ │ │ ├── cb_search_arm4.h │ │ │ ├── cb_search_bfin.h │ │ │ ├── cb_search_sse.h │ │ │ ├── exc_10_16_table.c │ │ │ ├── exc_10_32_table.c │ │ │ ├── exc_20_32_table.c │ │ │ ├── exc_5_256_table.c │ │ │ ├── exc_5_64_table.c │ │ │ ├── exc_8_128_table.c │ │ │ ├── fftwrap.c │ │ │ ├── fftwrap.h │ │ │ ├── filterbank.c │ │ │ ├── filterbank.h │ │ │ ├── filters.c │ │ │ ├── filters.h │ │ │ ├── filters_arm4.h │ │ │ ├── filters_bfin.h │ │ │ ├── filters_sse.h │ │ │ ├── fixed_arm4.h │ │ │ ├── fixed_arm5e.h │ │ │ ├── fixed_bfin.h │ │ │ ├── fixed_debug.h │ │ │ ├── fixed_generic.h │ │ │ ├── gain_table.c │ │ │ ├── gain_table_lbr.c │ │ │ ├── hexc_10_32_table.c │ │ │ ├── hexc_table.c │ │ │ ├── high_lsp_tables.c │ │ │ ├── jitter.c │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fftr.c │ │ │ ├── kiss_fftr.h │ │ │ ├── lpc.c │ │ │ ├── lpc.h │ │ │ ├── lpc_bfin.h │ │ │ ├── lsp.c │ │ │ ├── lsp.h │ │ │ ├── lsp_bfin.h │ │ │ ├── lsp_tables_nb.c │ │ │ ├── ltp.c │ │ │ ├── ltp.h │ │ │ ├── ltp_arm4.h │ │ │ ├── ltp_bfin.h │ │ │ ├── ltp_sse.h │ │ │ ├── math_approx.h │ │ │ ├── mdf.c │ │ │ ├── misc_bfin.h │ │ │ ├── modes.c │ │ │ ├── modes.h │ │ │ ├── modes_wb.c │ │ │ ├── nb_celp.c │ │ │ ├── nb_celp.h │ │ │ ├── os_support.h │ │ │ ├── preprocess.c │ │ │ ├── pseudofloat.h │ │ │ ├── quant_lsp.c │ │ │ ├── quant_lsp.h │ │ │ ├── quant_lsp_bfin.h │ │ │ ├── resample.c │ │ │ ├── resample_sse.h │ │ │ ├── sb_celp.c │ │ │ ├── sb_celp.h │ │ │ ├── scal.c │ │ │ ├── smallft.c │ │ │ ├── smallft.h │ │ │ ├── speex.c │ │ │ ├── speex │ │ │ ├── speex.h │ │ │ ├── speex_bits.h │ │ │ ├── speex_buffer.h │ │ │ ├── speex_callbacks.h │ │ │ ├── speex_config_types.h │ │ │ ├── speex_config_types.h.in │ │ │ ├── speex_echo.h │ │ │ ├── speex_header.h │ │ │ ├── speex_jitter.h │ │ │ ├── speex_preprocess.h │ │ │ ├── speex_resampler.h │ │ │ ├── speex_stereo.h │ │ │ └── speex_types.h │ │ │ ├── speex_callbacks.c │ │ │ ├── speex_header.c │ │ │ ├── stack_alloc.h │ │ │ ├── stereo.c │ │ │ ├── vbr.c │ │ │ ├── vbr.h │ │ │ ├── vorbis_psy.h │ │ │ ├── vq.c │ │ │ ├── vq.h │ │ │ ├── vq_arm4.h │ │ │ ├── vq_bfin.h │ │ │ ├── vq_sse.h │ │ │ └── window.c │ ├── SpeexAllHeaders.h │ └── manager │ │ ├── AQRecorder.h │ │ ├── AQRecorder.mm │ │ ├── Codec │ │ ├── SpeexAllHeaders.h │ │ ├── SpeexCodec.h │ │ └── SpeexCodec.m │ │ ├── Decapsulator.h │ │ ├── Decapsulator.m │ │ ├── Encapsulator.h │ │ ├── Encapsulator.m │ │ ├── PlayerManager.h │ │ ├── PlayerManager.m │ │ ├── PublicUtility │ │ ├── CADebugMacros.cpp │ │ ├── CADebugMacros.h │ │ ├── CAMath.h │ │ ├── CAStreamBasicDescription.cpp │ │ ├── CAStreamBasicDescription.h │ │ ├── CAXException.cpp │ │ └── CAXException.h │ │ ├── RawAudioDataPlayer.h │ │ ├── RawAudioDataPlayer.m │ │ ├── RecorderManager.h │ │ └── RecorderManager.mm ├── XLog.h ├── std.h └── std.m ├── IOSDuoduoTests ├── IOSDuoduoTests.m ├── TeamTalkTests-Info.plist └── en.lproj │ └── InfoPlist.strings ├── Images.xcassets ├── AppIcon.appiconset │ └── Contents.json └── LaunchImage.launchimage │ └── Contents.json ├── LoginViewController.h ├── LoginViewController.m ├── LoginViewController.xib ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPRequestOperationManager.m │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── BuildHeaders │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ ├── DACircularProgress │ │ └── DACircularProgressView.h │ ├── FMDB │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabasePool.h │ │ ├── FMDatabaseQueue.h │ │ └── FMResultSet.h │ ├── HPGrowingTextView │ │ ├── HPGrowingTextView.h │ │ └── HPTextViewInternal.h │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ ├── PSTCollectionView │ │ ├── NSIndexPath+PSTCollectionViewAdditions.h │ │ ├── PSTCollectionView.h │ │ ├── PSTCollectionViewCell.h │ │ ├── PSTCollectionViewCommon.h │ │ ├── PSTCollectionViewController.h │ │ ├── PSTCollectionViewData.h │ │ ├── PSTCollectionViewFlowLayout.h │ │ ├── PSTCollectionViewItemKey.h │ │ ├── PSTCollectionViewLayout+Internals.h │ │ ├── PSTCollectionViewLayout.h │ │ ├── PSTCollectionViewUpdateItem.h │ │ ├── PSTGridLayoutInfo.h │ │ ├── PSTGridLayoutItem.h │ │ ├── PSTGridLayoutRow.h │ │ └── PSTGridLayoutSection.h │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h ├── DACircularProgress │ ├── DACircularProgress │ │ ├── DACircularProgressView.h │ │ └── DACircularProgressView.m │ ├── LICENSE.md │ └── README.md ├── FMDB │ ├── LICENSE.txt │ ├── README.markdown │ └── src │ │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m ├── HPGrowingTextView │ ├── LICENSE.txt │ ├── README.md │ └── class │ │ ├── HPGrowingTextView.h │ │ ├── HPGrowingTextView.m │ │ ├── HPTextViewInternal.h │ │ └── HPTextViewInternal.m ├── Headers │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ ├── DACircularProgress │ │ └── DACircularProgressView.h │ ├── FMDB │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabasePool.h │ │ ├── FMDatabaseQueue.h │ │ └── FMResultSet.h │ ├── HPGrowingTextView │ │ ├── HPGrowingTextView.h │ │ └── HPTextViewInternal.h │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ ├── PSTCollectionView │ │ ├── NSIndexPath+PSTCollectionViewAdditions.h │ │ ├── PSTCollectionView.h │ │ ├── PSTCollectionViewCell.h │ │ ├── PSTCollectionViewCommon.h │ │ ├── PSTCollectionViewController.h │ │ ├── PSTCollectionViewData.h │ │ ├── PSTCollectionViewFlowLayout.h │ │ ├── PSTCollectionViewItemKey.h │ │ ├── PSTCollectionViewLayout+Internals.h │ │ ├── PSTCollectionViewLayout.h │ │ ├── PSTCollectionViewUpdateItem.h │ │ ├── PSTGridLayoutInfo.h │ │ ├── PSTGridLayoutItem.h │ │ ├── PSTGridLayoutRow.h │ │ └── PSTGridLayoutSection.h │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown ├── Manifest.lock ├── PSTCollectionView │ ├── LICENSE │ ├── PSTCollectionView │ │ ├── NSIndexPath+PSTCollectionViewAdditions.h │ │ ├── NSIndexPath+PSTCollectionViewAdditions.m │ │ ├── PSTCollectionView.h │ │ ├── PSTCollectionView.m │ │ ├── PSTCollectionViewCell.h │ │ ├── PSTCollectionViewCell.m │ │ ├── PSTCollectionViewCommon.h │ │ ├── PSTCollectionViewController.h │ │ ├── PSTCollectionViewController.m │ │ ├── PSTCollectionViewData.h │ │ ├── PSTCollectionViewData.m │ │ ├── PSTCollectionViewFlowLayout.h │ │ ├── PSTCollectionViewFlowLayout.m │ │ ├── PSTCollectionViewItemKey.h │ │ ├── PSTCollectionViewItemKey.m │ │ ├── PSTCollectionViewLayout+Internals.h │ │ ├── PSTCollectionViewLayout.h │ │ ├── PSTCollectionViewLayout.m │ │ ├── PSTCollectionViewUpdateItem.h │ │ ├── PSTCollectionViewUpdateItem.m │ │ ├── PSTGridLayoutInfo.h │ │ ├── PSTGridLayoutInfo.m │ │ ├── PSTGridLayoutItem.h │ │ ├── PSTGridLayoutItem.m │ │ ├── PSTGridLayoutRow.h │ │ ├── PSTGridLayoutRow.m │ │ ├── PSTGridLayoutSection.h │ │ └── PSTGridLayoutSection.m │ └── README.md ├── Pods-AFNetworking-Private.xcconfig ├── Pods-AFNetworking-dummy.m ├── Pods-AFNetworking-prefix.pch ├── Pods-AFNetworking.xcconfig ├── Pods-DACircularProgress-Private.xcconfig ├── Pods-DACircularProgress-dummy.m ├── Pods-DACircularProgress-prefix.pch ├── Pods-DACircularProgress.xcconfig ├── Pods-FMDB-Private.xcconfig ├── Pods-FMDB-dummy.m ├── Pods-FMDB-prefix.pch ├── Pods-FMDB.xcconfig ├── Pods-HPGrowingTextView-Private.xcconfig ├── Pods-HPGrowingTextView-dummy.m ├── Pods-HPGrowingTextView-prefix.pch ├── Pods-HPGrowingTextView.xcconfig ├── Pods-MBProgressHUD-Private.xcconfig ├── Pods-MBProgressHUD-dummy.m ├── Pods-MBProgressHUD-prefix.pch ├── Pods-MBProgressHUD.xcconfig ├── Pods-PSTCollectionView-Private.xcconfig ├── Pods-PSTCollectionView-dummy.m ├── Pods-PSTCollectionView-prefix.pch ├── Pods-PSTCollectionView.xcconfig ├── Pods-SDWebImage-Private.xcconfig ├── Pods-SDWebImage-dummy.m ├── Pods-SDWebImage-prefix.pch ├── Pods-SDWebImage.xcconfig ├── Pods-acknowledgements.markdown ├── Pods-acknowledgements.plist ├── Pods-dummy.m ├── Pods-environment.h ├── Pods-resources.sh ├── Pods.xcconfig ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── Michael.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-AFNetworking.xcscheme │ │ ├── Pods-DACircularProgress.xcscheme │ │ ├── Pods-FMDB.xcscheme │ │ ├── Pods-HPGrowingTextView.xcscheme │ │ ├── Pods-MBProgressHUD.xcscheme │ │ ├── Pods-PSTCollectionView.xcscheme │ │ ├── Pods-SDWebImage.xcscheme │ │ ├── Pods.xcscheme │ │ └── xcschememanagement.plist └── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ ├── NSData+ImageContentType.h │ ├── NSData+ImageContentType.m │ ├── SDImageCache.h │ ├── SDImageCache.m │ ├── SDWebImageCompat.h │ ├── SDWebImageCompat.m │ ├── SDWebImageDecoder.h │ ├── SDWebImageDecoder.m │ ├── SDWebImageDownloader.h │ ├── SDWebImageDownloader.m │ ├── SDWebImageDownloaderOperation.h │ ├── SDWebImageDownloaderOperation.m │ ├── SDWebImageManager.h │ ├── SDWebImageManager.m │ ├── SDWebImageOperation.h │ ├── SDWebImagePrefetcher.h │ ├── SDWebImagePrefetcher.m │ ├── UIButton+WebCache.h │ ├── UIButton+WebCache.m │ ├── UIImage+GIF.h │ ├── UIImage+GIF.m │ ├── UIImage+MultiFormat.h │ ├── UIImage+MultiFormat.m │ ├── UIImageView+HighlightedWebCache.h │ ├── UIImageView+HighlightedWebCache.m │ ├── UIImageView+WebCache.h │ ├── UIImageView+WebCache.m │ ├── UIView+WebCacheOperation.h │ └── UIView+WebCacheOperation.m ├── RuntimeStatus.h ├── RuntimeStatus.m ├── TeamTalk-Info.plist ├── TeamTalk.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IOSDuoduo.xccheckout │ │ └── TeamTalk.xccheckout │ └── xcuserdata │ │ └── Michael.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Michael.xcuserdatad │ └── xcschemes │ ├── IOSDuoduo.xcscheme │ ├── IOSDuoduoTests.xcscheme │ └── xcschememanagement.plist ├── TeamTalk.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ ├── IOSDuoduo.xccheckout │ └── TeamTalk.xccheckout └── xcuserdata │ └── Michael.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ ├── WorkspaceSettings.xcsettings │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── en.lproj └── InfoPlist.strings ├── main.m └── resources ├── add.png ├── add@2x.png ├── chat.png ├── chat@2x.png ├── contact.png ├── contact@2x.png ├── contact_selected.png ├── contact_selected@2x.png ├── conversation.png ├── conversation@2x.png ├── conversation_selected.png ├── conversation_selected@2x.png ├── dd_album.png ├── dd_album@2x.png ├── dd_cancel_send_record.png ├── dd_cancel_send_record@2x.png ├── dd_emoji_delete.png ├── dd_emoji_delete@2x.png ├── dd_emotion.png ├── dd_emotion@2x.png ├── dd_has_unread_message.png ├── dd_has_unread_message@2x.png ├── dd_image_send.png ├── dd_image_send@2x.png ├── dd_input_normal.png ├── dd_input_normal@2x.png ├── dd_left_voice_one.png ├── dd_left_voice_one@2x.png ├── dd_left_voice_three.png ├── dd_left_voice_three@2x.png ├── dd_left_voice_two.png ├── dd_left_voice_two@2x.png ├── dd_photo_back.png ├── dd_photo_back@2x.png ├── dd_press_to_say_normal.png ├── dd_press_to_say_normal@2x.png ├── dd_preview_select.png ├── dd_preview_select@2x.png ├── dd_preview_unselected.png ├── dd_recent_contacts.png ├── dd_recent_contacts@2x.png ├── dd_record_normal.png ├── dd_record_normal@2x.png ├── dd_record_release_end.png ├── dd_record_release_end@2x.png ├── dd_record_too_short.png ├── dd_record_too_short@2x.png ├── dd_recording.png ├── dd_recording@2x.png ├── dd_right_voice_one.png ├── dd_right_voice_one@2x.png ├── dd_right_voice_three.png ├── dd_right_voice_three@2x.png ├── dd_right_voice_two.png ├── dd_right_voice_two@2x.png ├── dd_selected_photo.png ├── dd_selected_photo@2x.png ├── dd_send_failed.png ├── dd_send_failed@2x.png ├── dd_take-photo.png ├── dd_take-photo@2x.png ├── dd_utility.png ├── dd_utility@2x.png ├── dd_volumn.png ├── dd_volumn@2x.png ├── delete.png ├── delete@2x.png ├── email.png ├── email@2x.png ├── jiantou.png ├── jiantou@2x.png ├── left.png ├── left@2x.png ├── loginlogo.jpg ├── msg.caf ├── myprofile.png ├── myprofile@2x.png ├── myprofile_selected.png ├── myprofile_selected@2x.png ├── password.png ├── password@2x.png ├── right.png ├── right@2x.png ├── setting.png ├── setting@2x.png ├── tel.png ├── user_placeholder.png ├── user_placeholder@2x.png ├── username.png └── username@2x.png /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/README.md -------------------------------------------------------------------------------- /TeamTalk/DDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/DDAppDelegate.h -------------------------------------------------------------------------------- /TeamTalk/DDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/DDAppDelegate.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo Tests/IOSDuoduo Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo Tests/IOSDuoduo Tests-Info.plist -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo Tests/IOSDuoduo Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo Tests/IOSDuoduo Tests-Prefix.pch -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo Tests/IOSDuoduo_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo Tests/IOSDuoduo_Tests.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSDate+DDAddition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSDate+DDAddition.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSDate+DDAddition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSDate+DDAddition.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSDictionary+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSDictionary+JSON.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSDictionary+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSDictionary+JSON.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSDictionary+Safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSDictionary+Safe.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSDictionary+Safe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSDictionary+Safe.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSIndexSet+AQIndexesOutsideSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSIndexSet+AQIndexesOutsideSet.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSIndexSet+AQIndexesOutsideSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSIndexSet+AQIndexesOutsideSet.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSIndexSet+AQIsSetContiguous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSIndexSet+AQIsSetContiguous.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSIndexSet+AQIsSetContiguous.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSIndexSet+AQIsSetContiguous.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSObject+Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSObject+Property.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSObject+Property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSObject+Property.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSString+Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSString+Additions.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSString+Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSString+Additions.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSString+DDPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSString+DDPath.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSString+DDPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSString+DDPath.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSString+JSMessagesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSString+JSMessagesView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/NSString+JSMessagesView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/NSString+JSMessagesView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIButton+JSMessagesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIButton+JSMessagesView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIButton+JSMessagesView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIButton+JSMessagesView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIColor+AQGridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIColor+AQGridView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIColor+AQGridView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIColor+AQGridView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIColor+JSMessagesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIColor+JSMessagesView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIColor+JSMessagesView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIColor+JSMessagesView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIImage+JSMessagesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIImage+JSMessagesView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIImage+JSMessagesView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIImage+JSMessagesView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIView+AnimationOptionsForCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIView+AnimationOptionsForCurve.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIView+AnimationOptionsForCurve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIView+AnimationOptionsForCurve.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIView+DDAddition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIView+DDAddition.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Category/UIView+DDAddition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Category/UIView+DDAddition.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/DDCONSTANT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/DDCONSTANT.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/DDSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/DDSearch.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/DDSearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/DDSearch.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Entity/DDBaseEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Entity/DDBaseEntity.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Entity/DDBaseEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Entity/DDBaseEntity.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Entity/DDGroupEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Entity/DDGroupEntity.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Entity/DDGroupEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Entity/DDGroupEntity.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Entity/DDMessageEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Entity/DDMessageEntity.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Entity/DDMessageEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Entity/DDMessageEntity.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Entity/DDSessionEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Entity/DDSessionEntity.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Entity/DDSessionEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Entity/DDSessionEntity.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Entity/DDUserEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Entity/DDUserEntity.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Entity/DDUserEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Entity/DDUserEntity.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/IMBaseDefine.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/IMBaseDefine.pb.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/IMBaseDefine.pb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/IMBaseDefine.pb.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/IMClient2ServBase.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/IMClient2ServBase.pb.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/IMClient2ServBase.pb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/IMClient2ServBase.pb.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/IMClient2ServFile.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/IMClient2ServFile.pb.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/IMClient2ServFile.pb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/IMClient2ServFile.pb.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/IMClient2ServGroup.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/IMClient2ServGroup.pb.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/IMClient2ServGroup.pb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/IMClient2ServGroup.pb.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/29px@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/29px@1x.png -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/29px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/29px@2x.png -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/40px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/40px@2x.png -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/57px@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/57px@1x.png -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/57px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/57px@2x.png -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/60px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/60px@2x.png -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/MD5.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/MD5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/MD5.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/DDGroupModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/DDGroupModule.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/DDGroupModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/DDGroupModule.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/DataBase/DDDatabaseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/DataBase/DDDatabaseUtil.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/DataBase/DDDatabaseUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/DataBase/DDDatabaseUtil.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Http/DDAFClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Http/DDAFClient.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Http/DDAFClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Http/DDAFClient.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Login/DDHttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Login/DDHttpServer.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Login/DDHttpServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Login/DDHttpServer.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Login/DDLoginServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Login/DDLoginServer.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Login/DDLoginServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Login/DDLoginServer.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Login/DDMsgServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Login/DDMsgServer.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Login/DDMsgServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Login/DDMsgServer.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Login/DDTcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Login/DDTcpServer.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Login/DDTcpServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Login/DDTcpServer.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Login/DDTokenManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Login/DDTokenManager.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Login/DDTokenManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Login/DDTokenManager.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Messages/DDMessageModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Messages/DDMessageModule.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Messages/DDMessageModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Messages/DDMessageModule.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Messages/DDMessageSendManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Messages/DDMessageSendManager.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Messages/DDMessageSendManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Messages/DDMessageSendManager.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Users/DDUserModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Users/DDUserModule.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Module/Users/DDUserModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Module/Users/DDUserModule.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/SpellLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/SpellLibrary.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/SpellLibrary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/SpellLibrary.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/StateMaintance/DDClientState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/StateMaintance/DDClientState.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/StateMaintance/DDClientState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/StateMaintance/DDClientState.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/StateMaintance/DDClientStateMaintenanceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/StateMaintance/DDClientStateMaintenanceManager.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/StateMaintance/DDClientStateMaintenanceManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/StateMaintance/DDClientStateMaintenanceManager.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/SundriesCenter/DDNotificationHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/SundriesCenter/DDNotificationHelp.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/SundriesCenter/DDNotificationHelp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/SundriesCenter/DDNotificationHelp.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/SundriesCenter/DDSundriesCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/SundriesCenter/DDSundriesCenter.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/SundriesCenter/DDSundriesCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/SundriesCenter/DDSundriesCenter.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDAPISchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDAPISchedule.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDAPISchedule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDAPISchedule.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDAPIScheduleProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDAPIScheduleProtocol.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDAPIUnrequestScheduleProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDAPIUnrequestScheduleProtocol.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDAddMemberToGroupAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDAddMemberToGroupAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDAddMemberToGroupAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDAddMemberToGroupAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDAllUserAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDAllUserAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDAllUserAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDAllUserAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDCreateGroupAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDCreateGroupAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDCreateGroupAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDCreateGroupAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDDataInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDDataInputStream.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDDataInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDDataInputStream.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDDataOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDDataOutputStream.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDDataOutputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDDataOutputStream.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDDepartmentAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDDepartmentAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDDepartmentAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDDepartmentAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDFixedGroupAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDFixedGroupAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDFixedGroupAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDFixedGroupAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDGroupInfoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDGroupInfoAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDGroupInfoAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDGroupInfoAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDGroupMsgReadACKAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDGroupMsgReadACKAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDGroupMsgReadACKAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDGroupMsgReadACKAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDGroupMsgReceivedACKAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDGroupMsgReceivedACKAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDGroupMsgReceivedACKAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDGroupMsgReceivedACKAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDGroupsUnreadMessageAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDGroupsUnreadMessageAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDGroupsUnreadMessageAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDGroupsUnreadMessageAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDReachability.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDReachability.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDReceiveFixedGroupMemberChanged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDReceiveFixedGroupMemberChanged.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDReceiveFixedGroupMemberChanged.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDReceiveFixedGroupMemberChanged.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDReceiveGroupAddMemberAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDReceiveGroupAddMemberAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDReceiveGroupAddMemberAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDReceiveGroupAddMemberAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDRecentGroupAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDRecentGroupAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDRecentGroupAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDRecentGroupAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDSendBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDSendBuffer.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDSendBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDSendBuffer.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDSuperAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDSuperAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDSuperAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDSuperAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDTcpClientManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDTcpClientManager.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDTcpClientManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDTcpClientManager.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDTcpProtocolHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDTcpProtocolHeader.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDTcpProtocolHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDTcpProtocolHeader.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDUnreadMessageGroupAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDUnreadMessageGroupAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDUnreadMessageGroupAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDUnreadMessageGroupAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDUnrequestSuperAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDUnrequestSuperAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDUnrequestSuperAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDUnrequestSuperAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDepartment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDepartment.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DDepartment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DDepartment.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DataOutputStream+Addition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DataOutputStream+Addition.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/DataOutputStream+Addition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/DataOutputStream+Addition.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/NSStream+NSStreamAddition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/NSStream+NSStreamAddition.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/NSStream+NSStreamAddition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/NSStream+NSStreamAddition.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDHeartbeatAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDHeartbeatAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDHeartbeatAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDHeartbeatAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDLoginAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDLoginAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDLoginAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDLoginAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDMsgServerIPAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDMsgServerIPAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDMsgServerIPAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Login/DDMsgServerIPAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendMessageAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendMessageAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendMessageAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendMessageAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendMessageReadACKAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendMessageReadACKAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendMessageReadACKAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendMessageReadACKAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendPhotoMessageAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendPhotoMessageAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendPhotoMessageAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendPhotoMessageAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendVoiceMessageAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendVoiceMessageAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendVoiceMessageAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Msg/DDSendVoiceMessageAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/DDAllotServiceAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/DDAllotServiceAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/DDAllotServiceAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/DDAllotServiceAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/DDGetUserInfoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/DDGetUserInfoAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/DDGetUserInfoAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/DDGetUserInfoAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/RecentConactsAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/RecentConactsAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/RecentConactsAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/Users/RecentConactsAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/cinfo/DDCinfoRequestAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/cinfo/DDCinfoRequestAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/cinfo/DDCinfoRequestAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/RequestAPI/cinfo/DDCinfoRequestAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Kickoff/ReceiveKickoffAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Kickoff/ReceiveKickoffAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Kickoff/ReceiveKickoffAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Kickoff/ReceiveKickoffAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Msg/DDReceiveMessageACKAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Msg/DDReceiveMessageACKAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Msg/DDReceiveMessageACKAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Msg/DDReceiveMessageACKAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Msg/DDReceiveMessageAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Msg/DDReceiveMessageAPI.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Msg/DDReceiveMessageAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TCPAPI/UnrequestAPI/Msg/DDReceiveMessageAPI.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/TeamTalk-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/TeamTalk-Prefix.pch -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridView+CellLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridView+CellLayout.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewAnimatorItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewAnimatorItem.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewAnimatorItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewAnimatorItem.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewData.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewData.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewUpdateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewUpdateInfo.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewUpdateInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewUpdateInfo.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewUpdateItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewUpdateItem.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewUpdateItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/AQ/AQGridViewUpdateItem.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWCaptionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWCaptionView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWCaptionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWCaptionView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWCommon.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWGridCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWGridCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWGridCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWGridCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWGridViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWGridViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWGridViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWGridViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhoto.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhoto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhoto.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhotoBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhotoBrowser.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhotoBrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhotoBrowser.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhotoBrowserPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhotoBrowserPrivate.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhotoProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWPhotoProtocol.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWTapDetectingImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWTapDetectingImageView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWTapDetectingImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWTapDetectingImageView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWTapDetectingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWTapDetectingView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWTapDetectingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWTapDetectingView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWZoomingScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWZoomingScrollView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ThridFramework/MW/MWZoomingScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ThridFramework/MW/MWZoomingScrollView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ToRemove/JSDismissiveTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ToRemove/JSDismissiveTextView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ToRemove/JSDismissiveTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ToRemove/JSDismissiveTextView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ToRemove/JSMessageInputView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ToRemove/JSMessageInputView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ToRemove/JSMessageInputView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ToRemove/JSMessageInputView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ToRemove/JSMessageTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ToRemove/JSMessageTextView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ToRemove/JSMessageTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ToRemove/JSMessageTextView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/ToRemove/little_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/ToRemove/little_minus.png -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/AlbumDetailsBottomBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/AlbumDetailsBottomBar.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/AlbumDetailsBottomBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/AlbumDetailsBottomBar.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/AnalysisImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/AnalysisImage.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/AnalysisImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/AnalysisImage.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatBaseCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatBaseCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatBaseCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatBaseCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatCellProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatCellProtocol.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatImageCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatImageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatImageCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatTextCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatTextCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatTextCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatTextCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatTextCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatTextCell.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatVoiceCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatVoiceCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatVoiceCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDChatVoiceCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDPromptCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDPromptCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDPromptCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/Cells/DDPromptCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatEditTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatEditTableViewCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatEditTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatEditTableViewCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/AlbumViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/AlbumViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/AlbumViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/AlbumViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/ChatUtilityItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/ChatUtilityItem.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/ChatUtilityItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/ChatUtilityItem.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmojiFaceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmojiFaceView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmojiFaceView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmojiFaceView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmotionsModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmotionsModule.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmotionsModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmotionsModule.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmotionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmotionsViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmotionsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/EmotionsViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/UtililyItemCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/UtililyItemCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/UtililyItemCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChatUtility/UtililyItemCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChattingEditModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChattingEditModule.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChattingEditModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChattingEditModule.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChattingMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChattingMainViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChattingMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChattingMainViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChattingMainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChattingMainViewController.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChattingModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChattingModule.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/ChattingModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/ChattingModule.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/CommodityCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/CommodityCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/CommodityCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/CommodityCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/CommodityCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/CommodityCell.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/DDChattingEditViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/DDChattingEditViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/DDChattingEditViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/DDChattingEditViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/DDChattingEditViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/DDChattingEditViewController.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/DDPersonEditCollectionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/DDPersonEditCollectionCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/DDPersonEditCollectionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/DDPersonEditCollectionCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/EditGroupViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/EditGroupViewCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/EditGroupViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/EditGroupViewCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/EditGroupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/EditGroupViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/EditGroupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/EditGroupViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/EditGroupViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/EditGroupViewController.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/MenuImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/MenuImageView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/MenuImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/MenuImageView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/RecordingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/RecordingView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/RecordingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/RecordingView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/TouchDownGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/TouchDownGestureRecognizer.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Chatting/TouchDownGestureRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Chatting/TouchDownGestureRecognizer.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ClearImageCacheViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ClearImageCacheViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ClearImageCacheViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ClearImageCacheViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ClearImageCacheViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ClearImageCacheViewController.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ClearImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ClearImageCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ClearImageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ClearImageCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ContactAvatarTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ContactAvatarTools.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ContactAvatarTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ContactAvatarTools.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ContactsModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ContactsModule.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ContactsModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ContactsModule.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ContactsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ContactsViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ContactsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ContactsViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/DDContactsCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/DDContactsCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/DDContactsCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/DDContactsCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ImageGridViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ImageGridViewCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ImageGridViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ImageGridViewCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ImagesPreviewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ImagesPreviewViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/ImagesPreviewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/ImagesPreviewViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/LoginModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/LoginModule.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/LoginModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/LoginModule.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/MainViewControll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/MainViewControll.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/MainViewControll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/MainViewControll.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/MainViewControll.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/MainViewControll.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/MyProfileViewControll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/MyProfileViewControll.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/MyProfileViewControll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/MyProfileViewControll.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/MyProfileViewControll.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/MyProfileViewControll.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Photo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Photo.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/Photo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/Photo.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/PhotosCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/PhotosCache.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/PhotosCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/PhotosCache.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/PublicProfileViewControll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/PublicProfileViewControll.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/PublicProfileViewControll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/PublicProfileViewControll.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/PublicProfileViewControll.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/PublicProfileViewControll.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/QuickReplyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/QuickReplyView.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/QuickReplyView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/QuickReplyView.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUserCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUserCell.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUserCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUserCell.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUserCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUserCell.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUserVCModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUserVCModule.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUserVCModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUserVCModule.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUsersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUsersViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUsersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUsersViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUsersViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/RecentContacts/RecentUsersViewController.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/SettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/SettingViewController.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/SettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/SettingViewController.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/SettingViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/SettingViewController.xib -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/VC/minus-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/VC/minus-sign.png -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/config.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libogg/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libogg/bitwise.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libogg/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libogg/framing.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libogg/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libogg/ogg/ogg.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libogg/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libogg/ogg/os_types.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/_kiss_fft_guts.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/arch.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/bits.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/buffer.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/cb_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/cb_search.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/cb_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/cb_search.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/cb_search_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/cb_search_arm4.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/cb_search_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/cb_search_bfin.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/cb_search_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/cb_search_sse.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_10_16_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_10_16_table.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_10_32_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_10_32_table.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_20_32_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_20_32_table.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_5_256_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_5_256_table.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_5_64_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_5_64_table.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_8_128_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/exc_8_128_table.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fftwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fftwrap.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fftwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fftwrap.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filterbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filterbank.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filterbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filterbank.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filters.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filters.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filters_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filters_arm4.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filters_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filters_bfin.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filters_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/filters_sse.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fixed_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fixed_arm4.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fixed_arm5e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fixed_arm5e.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fixed_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fixed_bfin.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fixed_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fixed_debug.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fixed_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/fixed_generic.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/gain_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/gain_table.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/gain_table_lbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/gain_table_lbr.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/hexc_10_32_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/hexc_10_32_table.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/hexc_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/hexc_table.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/high_lsp_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/high_lsp_tables.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/jitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/jitter.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/kiss_fft.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/kiss_fft.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/kiss_fftr.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/kiss_fftr.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lpc.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lpc.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lpc_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lpc_bfin.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lsp.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lsp.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lsp_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lsp_bfin.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lsp_tables_nb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/lsp_tables_nb.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/ltp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/ltp.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/ltp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/ltp.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/ltp_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/ltp_arm4.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/ltp_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/ltp_bfin.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/ltp_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/ltp_sse.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/math_approx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/math_approx.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/mdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/mdf.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/misc_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/misc_bfin.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/modes.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/modes.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/modes_wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/modes_wb.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/nb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/nb_celp.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/nb_celp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/nb_celp.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/os_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/os_support.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/preprocess.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/pseudofloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/pseudofloat.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/quant_lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/quant_lsp.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/quant_lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/quant_lsp.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/quant_lsp_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/quant_lsp_bfin.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/resample.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/resample_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/resample_sse.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/sb_celp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/sb_celp.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/sb_celp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/sb_celp.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/scal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/scal.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/smallft.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/smallft.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_bits.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_buffer.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_callbacks.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_echo.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_header.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_jitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_jitter.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_resampler.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_stereo.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex/speex_types.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex_callbacks.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/speex_header.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/stack_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/stack_alloc.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/stereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/stereo.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vbr.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vbr.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vorbis_psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vorbis_psy.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vq.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vq.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vq_arm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vq_arm4.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vq_bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vq_bfin.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vq_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/vq_sse.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/Code/Libs/libspeex/window.c -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/SpeexAllHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/SpeexAllHeaders.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/AQRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/AQRecorder.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/AQRecorder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/AQRecorder.mm -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/Codec/SpeexAllHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/Codec/SpeexAllHeaders.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/Codec/SpeexCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/Codec/SpeexCodec.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/Codec/SpeexCodec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/Codec/SpeexCodec.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/Decapsulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/Decapsulator.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/Decapsulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/Decapsulator.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/Encapsulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/Encapsulator.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/Encapsulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/Encapsulator.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/PlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/PlayerManager.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/PlayerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/PlayerManager.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/PublicUtility/CADebugMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/PublicUtility/CADebugMacros.cpp -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/PublicUtility/CADebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/PublicUtility/CADebugMacros.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/PublicUtility/CAMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/PublicUtility/CAMath.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/PublicUtility/CAXException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/PublicUtility/CAXException.cpp -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/PublicUtility/CAXException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/PublicUtility/CAXException.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/RawAudioDataPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/RawAudioDataPlayer.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/RawAudioDataPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/RawAudioDataPlayer.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/RecorderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/RecorderManager.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/Voice/manager/RecorderManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/Voice/manager/RecorderManager.mm -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/XLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/XLog.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/std.h -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduo/std.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduo/std.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduoTests/IOSDuoduoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduoTests/IOSDuoduoTests.m -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduoTests/TeamTalkTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/IOSDuoduoTests/TeamTalkTests-Info.plist -------------------------------------------------------------------------------- /TeamTalk/IOSDuoduoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TeamTalk/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TeamTalk/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /TeamTalk/LoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/LoginViewController.h -------------------------------------------------------------------------------- /TeamTalk/LoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/LoginViewController.m -------------------------------------------------------------------------------- /TeamTalk/LoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/LoginViewController.xib -------------------------------------------------------------------------------- /TeamTalk/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Podfile -------------------------------------------------------------------------------- /TeamTalk/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Podfile.lock -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFURLConnectionOperation.m -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /TeamTalk/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/DACircularProgress/DACircularProgressView.h: -------------------------------------------------------------------------------- 1 | ../../DACircularProgress/DACircularProgress/DACircularProgressView.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/HPGrowingTextView/HPGrowingTextView.h: -------------------------------------------------------------------------------- 1 | ../../HPGrowingTextView/class/HPGrowingTextView.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/HPGrowingTextView/HPTextViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../HPGrowingTextView/class/HPTextViewInternal.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/NSIndexPath+PSTCollectionViewAdditions.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/NSIndexPath+PSTCollectionViewAdditions.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionView.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewCell.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTCollectionViewCommon.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewCommon.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewController.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTCollectionViewData.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewData.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTCollectionViewFlowLayout.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewFlowLayout.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTCollectionViewItemKey.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewItemKey.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTCollectionViewLayout+Internals.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewLayout+Internals.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTCollectionViewLayout.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewLayout.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTCollectionViewUpdateItem.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewUpdateItem.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTGridLayoutInfo.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTGridLayoutInfo.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTGridLayoutItem.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTGridLayoutItem.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTGridLayoutRow.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTGridLayoutRow.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/PSTCollectionView/PSTGridLayoutSection.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTGridLayoutSection.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/BuildHeaders/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/DACircularProgress/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/DACircularProgress/LICENSE.md -------------------------------------------------------------------------------- /TeamTalk/Pods/DACircularProgress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/DACircularProgress/README.md -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/LICENSE.txt -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/README.markdown -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMDatabase.m -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMDatabasePool.m -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMDatabaseQueue.m -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /TeamTalk/Pods/FMDB/src/fmdb/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/FMDB/src/fmdb/FMResultSet.m -------------------------------------------------------------------------------- /TeamTalk/Pods/HPGrowingTextView/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/HPGrowingTextView/LICENSE.txt -------------------------------------------------------------------------------- /TeamTalk/Pods/HPGrowingTextView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/HPGrowingTextView/README.md -------------------------------------------------------------------------------- /TeamTalk/Pods/HPGrowingTextView/class/HPGrowingTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/HPGrowingTextView/class/HPGrowingTextView.h -------------------------------------------------------------------------------- /TeamTalk/Pods/HPGrowingTextView/class/HPGrowingTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/HPGrowingTextView/class/HPGrowingTextView.m -------------------------------------------------------------------------------- /TeamTalk/Pods/HPGrowingTextView/class/HPTextViewInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/HPGrowingTextView/class/HPTextViewInternal.h -------------------------------------------------------------------------------- /TeamTalk/Pods/HPGrowingTextView/class/HPTextViewInternal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/HPGrowingTextView/class/HPTextViewInternal.m -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/DACircularProgress/DACircularProgressView.h: -------------------------------------------------------------------------------- 1 | ../../DACircularProgress/DACircularProgress/DACircularProgressView.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/HPGrowingTextView/HPGrowingTextView.h: -------------------------------------------------------------------------------- 1 | ../../HPGrowingTextView/class/HPGrowingTextView.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/HPGrowingTextView/HPTextViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../HPGrowingTextView/class/HPTextViewInternal.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/NSIndexPath+PSTCollectionViewAdditions.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/NSIndexPath+PSTCollectionViewAdditions.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionView.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewCell.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTCollectionViewCommon.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewCommon.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewController.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTCollectionViewData.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewData.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTCollectionViewFlowLayout.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewFlowLayout.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTCollectionViewItemKey.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewItemKey.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTCollectionViewLayout+Internals.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewLayout+Internals.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTCollectionViewLayout.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewLayout.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTCollectionViewUpdateItem.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTCollectionViewUpdateItem.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTGridLayoutInfo.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTGridLayoutInfo.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTGridLayoutItem.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTGridLayoutItem.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTGridLayoutRow.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTGridLayoutRow.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/PSTCollectionView/PSTGridLayoutSection.h: -------------------------------------------------------------------------------- 1 | ../../PSTCollectionView/PSTCollectionView/PSTGridLayoutSection.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Headers/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /TeamTalk/Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /TeamTalk/Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /TeamTalk/Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /TeamTalk/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Manifest.lock -------------------------------------------------------------------------------- /TeamTalk/Pods/PSTCollectionView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/PSTCollectionView/LICENSE -------------------------------------------------------------------------------- /TeamTalk/Pods/PSTCollectionView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/PSTCollectionView/README.md -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-AFNetworking-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-AFNetworking-Private.xcconfig -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-AFNetworking-dummy.m -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-AFNetworking-prefix.pch -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-AFNetworking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-AFNetworking.xcconfig -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-DACircularProgress-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-DACircularProgress-Private.xcconfig -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-DACircularProgress-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-DACircularProgress-dummy.m -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-DACircularProgress-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-DACircularProgress-prefix.pch -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-DACircularProgress.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_DACIRCULARPROGRESS_OTHER_LDFLAGS = -framework QuartzCore -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-FMDB-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-FMDB-Private.xcconfig -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-FMDB-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-FMDB-dummy.m -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-FMDB-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-FMDB-prefix.pch -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-FMDB.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_FMDB_OTHER_LDFLAGS = -lsqlite3 -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-HPGrowingTextView-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-HPGrowingTextView-Private.xcconfig -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-HPGrowingTextView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-HPGrowingTextView-dummy.m -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-HPGrowingTextView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-HPGrowingTextView-prefix.pch -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-HPGrowingTextView.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-MBProgressHUD-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-MBProgressHUD-Private.xcconfig -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-MBProgressHUD-dummy.m -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-MBProgressHUD-prefix.pch -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_MBPROGRESSHUD_OTHER_LDFLAGS = -framework CoreGraphics -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-PSTCollectionView-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-PSTCollectionView-Private.xcconfig -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-PSTCollectionView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-PSTCollectionView-dummy.m -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-PSTCollectionView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-PSTCollectionView-prefix.pch -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-PSTCollectionView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-PSTCollectionView.xcconfig -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-SDWebImage-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-SDWebImage-Private.xcconfig -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-SDWebImage-dummy.m -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-SDWebImage-prefix.pch -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-SDWebImage.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_SDWEBIMAGE_OTHER_LDFLAGS = -framework ImageIO -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-environment.h -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods.xcconfig -------------------------------------------------------------------------------- /TeamTalk/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /TeamTalk/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /TeamTalk/RuntimeStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/RuntimeStatus.h -------------------------------------------------------------------------------- /TeamTalk/RuntimeStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/RuntimeStatus.m -------------------------------------------------------------------------------- /TeamTalk/TeamTalk-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/TeamTalk-Info.plist -------------------------------------------------------------------------------- /TeamTalk/TeamTalk.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/TeamTalk.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TeamTalk/TeamTalk.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/TeamTalk.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TeamTalk/TeamTalk.xcworkspace/xcshareddata/IOSDuoduo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/TeamTalk.xcworkspace/xcshareddata/IOSDuoduo.xccheckout -------------------------------------------------------------------------------- /TeamTalk/TeamTalk.xcworkspace/xcshareddata/TeamTalk.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/TeamTalk.xcworkspace/xcshareddata/TeamTalk.xccheckout -------------------------------------------------------------------------------- /TeamTalk/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TeamTalk/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/main.m -------------------------------------------------------------------------------- /TeamTalk/resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/add.png -------------------------------------------------------------------------------- /TeamTalk/resources/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/add@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/chat.png -------------------------------------------------------------------------------- /TeamTalk/resources/chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/chat@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/contact.png -------------------------------------------------------------------------------- /TeamTalk/resources/contact@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/contact@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/contact_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/contact_selected.png -------------------------------------------------------------------------------- /TeamTalk/resources/contact_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/contact_selected@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/conversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/conversation.png -------------------------------------------------------------------------------- /TeamTalk/resources/conversation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/conversation@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/conversation_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/conversation_selected.png -------------------------------------------------------------------------------- /TeamTalk/resources/conversation_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/conversation_selected@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_album.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_album@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_album@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_cancel_send_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_cancel_send_record.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_cancel_send_record@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_cancel_send_record@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_emoji_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_emoji_delete.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_emoji_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_emoji_delete@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_emotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_emotion.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_emotion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_emotion@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_has_unread_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_has_unread_message.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_has_unread_message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_has_unread_message@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_image_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_image_send.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_image_send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_image_send@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_input_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_input_normal.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_input_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_input_normal@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_left_voice_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_left_voice_one.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_left_voice_one@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_left_voice_one@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_left_voice_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_left_voice_three.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_left_voice_three@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_left_voice_three@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_left_voice_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_left_voice_two.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_left_voice_two@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_left_voice_two@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_photo_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_photo_back.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_photo_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_photo_back@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_press_to_say_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_press_to_say_normal.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_press_to_say_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_press_to_say_normal@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_preview_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_preview_select.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_preview_select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_preview_select@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_preview_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_preview_unselected.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_recent_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_recent_contacts.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_recent_contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_recent_contacts@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_record_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_record_normal.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_record_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_record_normal@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_record_release_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_record_release_end.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_record_release_end@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_record_release_end@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_record_too_short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_record_too_short.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_record_too_short@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_record_too_short@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_recording.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_recording@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_recording@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_right_voice_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_right_voice_one.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_right_voice_one@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_right_voice_one@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_right_voice_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_right_voice_three.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_right_voice_three@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_right_voice_three@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_right_voice_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_right_voice_two.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_right_voice_two@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_right_voice_two@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_selected_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_selected_photo.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_selected_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_selected_photo@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_send_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_send_failed.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_send_failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_send_failed@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_take-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_take-photo.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_take-photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_take-photo@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_utility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_utility.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_utility@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_utility@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_volumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_volumn.png -------------------------------------------------------------------------------- /TeamTalk/resources/dd_volumn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/dd_volumn@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/delete.png -------------------------------------------------------------------------------- /TeamTalk/resources/delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/delete@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/email.png -------------------------------------------------------------------------------- /TeamTalk/resources/email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/email@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/jiantou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/jiantou.png -------------------------------------------------------------------------------- /TeamTalk/resources/jiantou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/jiantou@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/left.png -------------------------------------------------------------------------------- /TeamTalk/resources/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/left@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/loginlogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/loginlogo.jpg -------------------------------------------------------------------------------- /TeamTalk/resources/msg.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/msg.caf -------------------------------------------------------------------------------- /TeamTalk/resources/myprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/myprofile.png -------------------------------------------------------------------------------- /TeamTalk/resources/myprofile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/myprofile@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/myprofile_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/myprofile_selected.png -------------------------------------------------------------------------------- /TeamTalk/resources/myprofile_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/myprofile_selected@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/password.png -------------------------------------------------------------------------------- /TeamTalk/resources/password@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/password@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/right.png -------------------------------------------------------------------------------- /TeamTalk/resources/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/right@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/setting.png -------------------------------------------------------------------------------- /TeamTalk/resources/setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/setting@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/tel.png -------------------------------------------------------------------------------- /TeamTalk/resources/user_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/user_placeholder.png -------------------------------------------------------------------------------- /TeamTalk/resources/user_placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/user_placeholder@2x.png -------------------------------------------------------------------------------- /TeamTalk/resources/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/username.png -------------------------------------------------------------------------------- /TeamTalk/resources/username@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai01/TTiOSClient/HEAD/TeamTalk/resources/username@2x.png --------------------------------------------------------------------------------