├── .DS_Store ├── QShare_iOS ├── .DS_Store ├── QShare.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── pengweijo.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── pengweijo.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── QShare.xcscheme │ │ └── xcschememanagement.plist ├── QShare │ ├── .DS_Store │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── .DS_Store │ │ │ ├── Contents.json │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── first.imageset │ │ │ ├── Contents.json │ │ │ ├── first.png │ │ │ └── first@2x.png │ │ └── second.imageset │ │ │ ├── Contents.json │ │ │ ├── second.png │ │ │ └── second@2x.png │ ├── Supporting Files │ │ ├── QShare-Info.plist │ │ ├── QShare-Prefix.pch │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── res │ │ ├── .DS_Store │ │ └── images │ │ │ ├── .DS_Store │ │ │ ├── ChatIMG │ │ │ ├── .DS_Store │ │ │ ├── audio-volume-high-panel-reverse@2x.png │ │ │ ├── audio-volume-high-panel@2x.png │ │ │ ├── contact.png │ │ │ ├── groupContact.png │ │ │ ├── groupInfo@2x.png │ │ │ └── wechatTemp │ │ │ │ ├── EmotionDefaut@2x.png │ │ │ │ ├── SignUpPasswordIcon@2x.png │ │ │ │ ├── SystemTipBg@2x.png │ │ │ │ ├── ToolViewBkg@2x.jpg │ │ │ │ ├── ToolViewBkg_Black@2x.png │ │ │ │ ├── ToolViewEmotion@2x.png │ │ │ │ ├── ToolViewEmotionHL@2x.png │ │ │ │ ├── ToolViewInputText@2x.png │ │ │ │ ├── ToolViewInputTextHL@2x.png │ │ │ │ ├── ToolViewInputVoice@2x.png │ │ │ │ ├── ToolViewInputVoiceHL@2x.png │ │ │ │ ├── ToolViewKeyboard@2x.png │ │ │ │ ├── ToolViewKeyboardHL@2x.png │ │ │ │ ├── TypeSelectorBtnHL_Black@2x.png │ │ │ │ ├── TypeSelectorBtn_Black@2x.png │ │ │ │ ├── UserHeaderImageBox@2x.png │ │ │ │ ├── VOIPReceiverVoiceNodeBkg@2x.png │ │ │ │ ├── VOIPReceiverVoiceNodeBkgHL@2x.png │ │ │ │ ├── VOIPSenderVoiceNodeBkg@2x.png │ │ │ │ ├── VOIPSenderVoiceNodeBkgHL@2x.png │ │ │ │ ├── sharemoreAdd@2x.png │ │ │ │ ├── sharemore_friendcard@2x.png │ │ │ │ ├── sharemore_location@2x.png │ │ │ │ ├── sharemore_pic@2x.png │ │ │ │ ├── sharemore_video@2x.png │ │ │ │ ├── sharemore_voiceinput@2x.png │ │ │ │ ├── sharemore_voipvoice@2x.png │ │ │ │ ├── sharemore_wxtalk@2x.png │ │ │ │ ├── tabbar_badge@2x.png │ │ │ │ ├── tabbar_contacts@2x.png │ │ │ │ ├── tabbar_contactsHL@2x.png │ │ │ │ ├── tabbar_discover.png │ │ │ │ ├── tabbar_discover@2x.png │ │ │ │ ├── tabbar_discoverHL.png │ │ │ │ ├── tabbar_discoverHL@2x.png │ │ │ │ ├── tabbar_mainframe.png │ │ │ │ ├── tabbar_mainframe@2x.png │ │ │ │ ├── tabbar_mainframeHL.png │ │ │ │ ├── tabbar_mainframeHL@2x.png │ │ │ │ ├── tabbar_me.png │ │ │ │ ├── tabbar_me@2x.png │ │ │ │ ├── tabbar_meHL.png │ │ │ │ └── tabbar_meHL@2x.png │ │ │ ├── Record │ │ │ ├── RecordingBkg.png │ │ │ ├── RecordingBkg@2x.png │ │ │ ├── RecordingSignal001.png │ │ │ ├── RecordingSignal001@2x.png │ │ │ ├── RecordingSignal002.png │ │ │ ├── RecordingSignal002@2x.png │ │ │ ├── RecordingSignal003.png │ │ │ ├── RecordingSignal003@2x.png │ │ │ ├── RecordingSignal004.png │ │ │ ├── RecordingSignal004@2x.png │ │ │ ├── RecordingSignal005.png │ │ │ ├── RecordingSignal005@2x.png │ │ │ ├── RecordingSignal006.png │ │ │ ├── RecordingSignal006@2x.png │ │ │ ├── RecordingSignal007.png │ │ │ ├── RecordingSignal007@2x.png │ │ │ ├── RecordingSignal008.png │ │ │ └── RecordingSignal008@2x.png │ │ │ ├── Setting │ │ │ ├── .DS_Store │ │ │ ├── avatar_default.png │ │ │ └── avatar_default@2x.png │ │ │ ├── bubble │ │ │ ├── bubbleMine.png │ │ │ ├── bubbleMine@2x.png │ │ │ ├── bubbleSomeone.png │ │ │ ├── bubbleSomeone@2x.png │ │ │ ├── missingAvatar.png │ │ │ ├── missingAvatar@2x.png │ │ │ ├── typingMine.png │ │ │ ├── typingMine@2x.png │ │ │ ├── typingSomeone.png │ │ │ └── typingSomeone@2x.png │ │ │ └── common │ │ │ ├── checkmark.png │ │ │ └── warning.png │ └── src │ │ ├── .DS_Store │ │ ├── XPAppDelegate.h │ │ ├── XPAppDelegate.m │ │ ├── controllers │ │ ├── .DS_Store │ │ ├── chat │ │ │ ├── ChatDetailVC.h │ │ │ ├── ChatDetailVC.m │ │ │ ├── ChatMainVC.h │ │ │ ├── ChatMainVC.m │ │ │ ├── CreatOrSelectGroupChatVC.h │ │ │ └── CreatOrSelectGroupChatVC.m │ │ ├── discovery │ │ │ ├── DiscoveryMainVC.h │ │ │ └── DiscoveryMainVC.m │ │ ├── friends │ │ │ ├── .DS_Store │ │ │ ├── AddFriends.h │ │ │ ├── AddFriends.m │ │ │ ├── ChatVC.h │ │ │ ├── ChatVC.m │ │ │ ├── ContactInfo.h │ │ │ ├── ContactInfo.m │ │ │ ├── FriendsMainVC.h │ │ │ ├── FriendsMainVC.m │ │ │ ├── GroupInfoVC.h │ │ │ ├── GroupInfoVC.m │ │ │ ├── GroupMembers.h │ │ │ ├── GroupMembers.m │ │ │ ├── GroupsChatVC.h │ │ │ ├── GroupsChatVC.m │ │ │ ├── GroupsContact.h │ │ │ ├── GroupsContact.m │ │ │ ├── InviteGroupContacts.h │ │ │ ├── InviteGroupContacts.m │ │ │ ├── MyAnnotation.h │ │ │ ├── MyAnnotation.m │ │ │ ├── MyLocation.h │ │ │ ├── MyLocation.m │ │ │ ├── viewLocationVC.h │ │ │ └── viewLocationVC.m │ │ ├── login │ │ │ ├── EnrollVC.h │ │ │ ├── EnrollVC.m │ │ │ ├── LoginVC.h │ │ │ └── LoginVC.m │ │ └── me │ │ │ ├── MeMainVC.h │ │ │ ├── MeMainVC.m │ │ │ ├── MessageNotification.h │ │ │ ├── MessageNotification.m │ │ │ ├── MessageNotificationDetail.h │ │ │ ├── MessageNotificationDetail.m │ │ │ ├── MyvCardDelegate.h │ │ │ ├── MyvCardIntro.h │ │ │ ├── MyvCardIntro.m │ │ │ ├── MyvCardSex.h │ │ │ ├── MyvCardSex.m │ │ │ ├── MyvCardVC.h │ │ │ ├── MyvCardVC.m │ │ │ ├── vCard.h │ │ │ └── vCard.m │ │ ├── thirdparty │ │ ├── .DS_Store │ │ ├── Base64 │ │ │ ├── .DS_Store │ │ │ ├── NSData+Base64.h │ │ │ ├── NSData+Base64.m │ │ │ ├── NSString+Base64.h │ │ │ └── NSString+Base64.m │ │ ├── FMDB │ │ │ ├── .DS_Store │ │ │ ├── FMDatabase.h │ │ │ ├── FMDatabase.m │ │ │ ├── FMDatabaseAdditions.h │ │ │ ├── FMDatabaseAdditions.m │ │ │ ├── FMDatabasePool.h │ │ │ ├── FMDatabasePool.m │ │ │ ├── FMDatabaseQueue.h │ │ │ ├── FMDatabaseQueue.m │ │ │ ├── FMResultSet.h │ │ │ └── FMResultSet.m │ │ ├── MBProgressHUD │ │ │ ├── MBProgressHUD.h │ │ │ └── MBProgressHUD.m │ │ ├── QBImagePickerController │ │ │ ├── QBAssetsCollectionCheckmarkView.h │ │ │ ├── QBAssetsCollectionCheckmarkView.m │ │ │ ├── QBAssetsCollectionFooterView.h │ │ │ ├── QBAssetsCollectionFooterView.m │ │ │ ├── QBAssetsCollectionOverlayView.h │ │ │ ├── QBAssetsCollectionOverlayView.m │ │ │ ├── QBAssetsCollectionViewCell.h │ │ │ ├── QBAssetsCollectionViewCell.m │ │ │ ├── QBAssetsCollectionViewController.h │ │ │ ├── QBAssetsCollectionViewController.m │ │ │ ├── QBAssetsCollectionViewLayout.h │ │ │ ├── QBAssetsCollectionViewLayout.m │ │ │ ├── QBImagePickerController.h │ │ │ ├── QBImagePickerController.m │ │ │ ├── QBImagePickerGroupCell.h │ │ │ ├── QBImagePickerGroupCell.m │ │ │ ├── QBImagePickerThumbnailView.h │ │ │ ├── QBImagePickerThumbnailView.m │ │ │ └── Resources │ │ │ │ ├── en.lproj │ │ │ │ └── QBImagePickerController.strings │ │ │ │ └── ja.lproj │ │ │ │ └── QBImagePickerController.strings │ │ ├── UIBubbleTableView │ │ │ ├── NSBubbleData.h │ │ │ ├── NSBubbleData.m │ │ │ ├── UIBubbleHeaderTableViewCell.h │ │ │ ├── UIBubbleHeaderTableViewCell.m │ │ │ ├── UIBubbleTableView.h │ │ │ ├── UIBubbleTableView.m │ │ │ ├── UIBubbleTableViewCell.h │ │ │ ├── UIBubbleTableViewCell.m │ │ │ ├── UIBubbleTableViewDataSource.h │ │ │ ├── UIBubbleTypingTableViewCell.h │ │ │ └── UIBubbleTypingTableViewCell.m │ │ ├── UMSocial_Sdk_3.3.1 │ │ │ ├── .DS_Store │ │ │ ├── Header │ │ │ │ ├── .DS_Store │ │ │ │ ├── UMSocial.h │ │ │ │ ├── UMSocialAccountManager.h │ │ │ │ ├── UMSocialBar.h │ │ │ │ ├── UMSocialConfig.h │ │ │ │ ├── UMSocialControllerService.h │ │ │ │ ├── UMSocialControllerServiceComment.h │ │ │ │ ├── UMSocialData.h │ │ │ │ ├── UMSocialDataService.h │ │ │ │ ├── UMSocialSnsData.h │ │ │ │ ├── UMSocialSnsPlatformManager.h │ │ │ │ └── UMSocialSnsService.h │ │ │ ├── SocialSDKXib │ │ │ │ ├── .DS_Store │ │ │ │ ├── UMSCommentDetailController.xib │ │ │ │ ├── UMSCommentInputController.xib │ │ │ │ ├── UMSCommentInputControlleriPad.xib │ │ │ │ ├── UMSLoginViewController.xib │ │ │ │ ├── UMSShareListController.xib │ │ │ │ ├── UMShareEditViewController.xib │ │ │ │ ├── UMShareEditViewControlleriPad.xib │ │ │ │ └── UMSnsAccountViewController.xib │ │ │ ├── UMSocialSDKResourcesNew.bundle │ │ │ │ ├── Buttons │ │ │ │ │ ├── UMS_Check.png │ │ │ │ │ ├── UMS_Check@2x.png │ │ │ │ │ ├── UMS_No_Location.png │ │ │ │ │ ├── UMS_No_Location@2x.png │ │ │ │ │ ├── UMS_User-Avatar-Placeholder@2x.png │ │ │ │ │ ├── UMS_User_profile_default@2x.png │ │ │ │ │ ├── UMS_account_login@2x.png │ │ │ │ │ ├── UMS_add_friend_off.png │ │ │ │ │ ├── UMS_add_friend_off@2x.png │ │ │ │ │ ├── UMS_add_friend_on.png │ │ │ │ │ ├── UMS_add_friend_on@2x.png │ │ │ │ │ ├── UMS_comment_input@2x.png │ │ │ │ │ ├── UMS_comment_view_cell.png │ │ │ │ │ ├── UMS_comment_view_cell_white@2x.png │ │ │ │ │ ├── UMS_delete_image_button_normal.png │ │ │ │ │ ├── UMS_delete_image_button_normal@2x.png │ │ │ │ │ ├── UMS_find@2x.png │ │ │ │ │ ├── UMS_follow_off@2x.png │ │ │ │ │ ├── UMS_follow_on@2x.png │ │ │ │ │ ├── UMS_nav_bar_bg_white@2x.png │ │ │ │ │ ├── UMS_nav_button_back.png │ │ │ │ │ ├── UMS_nav_button_back@2x.png │ │ │ │ │ ├── UMS_nav_button_close.png │ │ │ │ │ ├── UMS_nav_button_close@2x.png │ │ │ │ │ ├── UMS_nav_button_refresh.png │ │ │ │ │ ├── UMS_nav_button_refresh@2x.png │ │ │ │ │ ├── UMS_nav_button_send.png │ │ │ │ │ ├── UMS_nav_button_send@2x.png │ │ │ │ │ ├── UMS_oauth_off.png │ │ │ │ │ ├── UMS_oauth_off@2x.png │ │ │ │ │ ├── UMS_oauth_on.png │ │ │ │ │ ├── UMS_oauth_on@2x.png │ │ │ │ │ ├── UMS_place_map.png │ │ │ │ │ ├── UMS_place_map@2x.png │ │ │ │ │ ├── UMS_place_off.png │ │ │ │ │ ├── UMS_place_off@2x.png │ │ │ │ │ ├── UMS_place_tap.png │ │ │ │ │ ├── UMS_place_tap@2x.png │ │ │ │ │ ├── UMS_shake__share_button@2x.png │ │ │ │ │ ├── UMS_shake_close.png │ │ │ │ │ ├── UMS_shake_close@2x.png │ │ │ │ │ ├── UMS_shake_close_tap.png │ │ │ │ │ ├── UMS_shake_close_tap@2x.png │ │ │ │ │ ├── UMS_share_change_account.png │ │ │ │ │ ├── UMS_share_change_account@2x.png │ │ │ │ │ ├── UMS_share_change_account_bg@2x.png │ │ │ │ │ ├── UMS_share_change_account_tap.png │ │ │ │ │ ├── UMS_share_change_account_tap@2x.png │ │ │ │ │ ├── UMS_share_change_to_account@2x.png │ │ │ │ │ ├── UMS_share_change_to_account_tap@2x.png │ │ │ │ │ ├── UMS_share_oauth@2x.png │ │ │ │ │ ├── UMS_umeng_share_at.png │ │ │ │ │ ├── UMS_umeng_share_at@2x.png │ │ │ │ │ ├── UMS_umeng_share_atSel.png │ │ │ │ │ ├── UMS_umeng_share_atSel@2x.png │ │ │ │ │ ├── UMS_umeng_share_at_tap.png │ │ │ │ │ ├── UMS_umeng_share_toolbarBg.png │ │ │ │ │ ├── UMS_umeng_share_toolbarBg@2x.png │ │ │ │ │ ├── UMS_url_image.png │ │ │ │ │ ├── UMS_url_image@2x.png │ │ │ │ │ ├── UMS_url_music.png │ │ │ │ │ ├── UMS_url_music@2x.png │ │ │ │ │ ├── UMS_url_video.png │ │ │ │ │ └── UMS_url_video@2x.png │ │ │ │ ├── EGO │ │ │ │ │ ├── blackArrow.png │ │ │ │ │ ├── blackArrow@2x.png │ │ │ │ │ ├── blueArrow.png │ │ │ │ │ ├── blueArrow@2x.png │ │ │ │ │ ├── grayArrow.png │ │ │ │ │ ├── grayArrow@2x.png │ │ │ │ │ ├── whiteArrow.png │ │ │ │ │ └── whiteArrow@2x.png │ │ │ │ ├── OtherTheme │ │ │ │ │ ├── UMS_actionsheet_panel@2x.png │ │ │ │ │ ├── UMS_nav_back_button_normal.png │ │ │ │ │ ├── UMS_nav_back_button_normal@2x.png │ │ │ │ │ ├── UMS_nav_back_button_tap.png │ │ │ │ │ ├── UMS_nav_back_button_tap@2x.png │ │ │ │ │ ├── UMS_nav_bar_bg_black.png │ │ │ │ │ ├── UMS_nav_bar_bg_black@2x.png │ │ │ │ │ ├── UMS_nav_button_normal.png │ │ │ │ │ ├── UMS_nav_button_normal@2x.png │ │ │ │ │ ├── UMS_nav_button_tap.png │ │ │ │ │ └── UMS_nav_button_tap@2x.png │ │ │ │ ├── SnsPlatform │ │ │ │ │ ├── UMS_douban_icon.png │ │ │ │ │ ├── UMS_douban_icon@2x.png │ │ │ │ │ ├── UMS_douban_off.png │ │ │ │ │ ├── UMS_douban_off@2x.png │ │ │ │ │ ├── UMS_douban_on.png │ │ │ │ │ ├── UMS_douban_on@2x.png │ │ │ │ │ ├── UMS_email_icon.png │ │ │ │ │ ├── UMS_email_icon@2x.png │ │ │ │ │ ├── UMS_email_off.png │ │ │ │ │ ├── UMS_email_off@2x.png │ │ │ │ │ ├── UMS_email_on@2x.png │ │ │ │ │ ├── UMS_facebook_icon.png │ │ │ │ │ ├── UMS_facebook_icon@2x.png │ │ │ │ │ ├── UMS_facebook_off.png │ │ │ │ │ ├── UMS_facebook_off@2x.png │ │ │ │ │ ├── UMS_facebook_on.png │ │ │ │ │ ├── UMS_facebook_on@2x.png │ │ │ │ │ ├── UMS_laiwang_session@2x.png │ │ │ │ │ ├── UMS_laiwang_timeline@2x.png │ │ │ │ │ ├── UMS_qq_icon.png │ │ │ │ │ ├── UMS_qq_icon@2x.png │ │ │ │ │ ├── UMS_qq_off.png │ │ │ │ │ ├── UMS_qq_off@2x.png │ │ │ │ │ ├── UMS_qq_on.png │ │ │ │ │ ├── UMS_qq_on@2x.png │ │ │ │ │ ├── UMS_qzone_icon.png │ │ │ │ │ ├── UMS_qzone_icon@2x.png │ │ │ │ │ ├── UMS_qzone_off.png │ │ │ │ │ ├── UMS_qzone_off@2x.png │ │ │ │ │ ├── UMS_qzone_on.png │ │ │ │ │ ├── UMS_qzone_on@2x.png │ │ │ │ │ ├── UMS_renren_icon.png │ │ │ │ │ ├── UMS_renren_icon@2x.png │ │ │ │ │ ├── UMS_renren_off.png │ │ │ │ │ ├── UMS_renren_off@2x.png │ │ │ │ │ ├── UMS_renren_on.png │ │ │ │ │ ├── UMS_renren_on@2x.png │ │ │ │ │ ├── UMS_sina_icon.png │ │ │ │ │ ├── UMS_sina_icon@2x.png │ │ │ │ │ ├── UMS_sina_off.png │ │ │ │ │ ├── UMS_sina_off@2x.png │ │ │ │ │ ├── UMS_sina_on.png │ │ │ │ │ ├── UMS_sina_on@2x.png │ │ │ │ │ ├── UMS_sms_icon.png │ │ │ │ │ ├── UMS_sms_icon@2x.png │ │ │ │ │ ├── UMS_sms_off.png │ │ │ │ │ ├── UMS_sms_off@2x.png │ │ │ │ │ ├── UMS_sms_on@2x.png │ │ │ │ │ ├── UMS_tencent_icon.png │ │ │ │ │ ├── UMS_tencent_icon@2x.png │ │ │ │ │ ├── UMS_tencent_off.png │ │ │ │ │ ├── UMS_tencent_off@2x.png │ │ │ │ │ ├── UMS_tencent_on.png │ │ │ │ │ ├── UMS_tencent_on@2x.png │ │ │ │ │ ├── UMS_twitter_icon.png │ │ │ │ │ ├── UMS_twitter_icon@2x.png │ │ │ │ │ ├── UMS_twitter_off.png │ │ │ │ │ ├── UMS_twitter_off@2x.png │ │ │ │ │ ├── UMS_twitter_on.png │ │ │ │ │ ├── UMS_twitter_on@2x.png │ │ │ │ │ ├── UMS_wechat_icon.png │ │ │ │ │ ├── UMS_wechat_icon@2x.png │ │ │ │ │ ├── UMS_wechat_off.png │ │ │ │ │ ├── UMS_wechat_off@2x.png │ │ │ │ │ ├── UMS_wechat_on@2x.png │ │ │ │ │ ├── UMS_wechat_session_icon.png │ │ │ │ │ ├── UMS_wechat_session_icon@2x.png │ │ │ │ │ ├── UMS_wechat_timeline_icon.png │ │ │ │ │ ├── UMS_wechat_timeline_icon@2x.png │ │ │ │ │ ├── UMS_wechat_timeline_off.png │ │ │ │ │ ├── UMS_wechat_timeline_off@2x.png │ │ │ │ │ ├── UMS_wechat_timeline_on.png │ │ │ │ │ ├── UMS_wechat_timeline_on@2x.png │ │ │ │ │ ├── UMS_yixin_session@2x.png │ │ │ │ │ └── UMS_yixin_timeline@2x.png │ │ │ │ ├── SocialSDKBar │ │ │ │ │ ├── UMS_account_normal_white.png │ │ │ │ │ ├── UMS_account_normal_white@2x.png │ │ │ │ │ ├── UMS_account_tap_white.png │ │ │ │ │ ├── UMS_account_tap_white@2x.png │ │ │ │ │ ├── UMS_comment_normal_white.png │ │ │ │ │ ├── UMS_comment_normal_white@2x.png │ │ │ │ │ ├── UMS_comment_tap_white.png │ │ │ │ │ ├── UMS_comment_tap_white@2x.png │ │ │ │ │ ├── UMS_like_off_white.png │ │ │ │ │ ├── UMS_like_off_white@2x.png │ │ │ │ │ ├── UMS_like_on_white.png │ │ │ │ │ ├── UMS_like_on_white@2x.png │ │ │ │ │ ├── UMS_share_normal_white.png │ │ │ │ │ ├── UMS_share_normal_white@2x.png │ │ │ │ │ ├── UMS_share_tap_white.png │ │ │ │ │ └── UMS_share_tap_white@2x.png │ │ │ │ └── Sound │ │ │ │ │ └── shake_sound.mp3 │ │ │ ├── en.lproj │ │ │ │ ├── .DS_Store │ │ │ │ └── UMSocialLocalizable.strings │ │ │ ├── frameworks │ │ │ │ ├── .DS_Store │ │ │ │ └── Wechat │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── WXApi.h │ │ │ │ │ ├── WXApiObject.h │ │ │ │ │ └── libWeChatSDK.a │ │ │ ├── libUMSocial_Sdk_3.3.1.a │ │ │ ├── libUMSocial_Sdk_Comment_3.3.1.a │ │ │ └── zh-Hans.lproj │ │ │ │ └── UMSocialLocalizable.strings │ │ └── xmppframework │ │ │ ├── .DS_Store │ │ │ ├── Authentication │ │ │ ├── Anonymous │ │ │ │ ├── XMPPAnonymousAuthentication.h │ │ │ │ └── XMPPAnonymousAuthentication.m │ │ │ ├── Deprecated-Digest │ │ │ │ ├── XMPPDeprecatedDigestAuthentication.h │ │ │ │ └── XMPPDeprecatedDigestAuthentication.m │ │ │ ├── Deprecated-Plain │ │ │ │ ├── XMPPDeprecatedPlainAuthentication.h │ │ │ │ └── XMPPDeprecatedPlainAuthentication.m │ │ │ ├── Digest-MD5 │ │ │ │ ├── XMPPDigestMD5Authentication.h │ │ │ │ └── XMPPDigestMD5Authentication.m │ │ │ ├── Plain │ │ │ │ ├── XMPPPlainAuthentication.h │ │ │ │ └── XMPPPlainAuthentication.m │ │ │ ├── X-Facebook-Platform │ │ │ │ ├── XMPPXFacebookPlatformAuthentication.h │ │ │ │ └── XMPPXFacebookPlatformAuthentication.m │ │ │ └── XMPPSASLAuthentication.h │ │ │ ├── Categories │ │ │ ├── .DS_Store │ │ │ ├── NSData+XMPP.h │ │ │ ├── NSData+XMPP.m │ │ │ ├── NSNumber+XMPP.h │ │ │ ├── NSNumber+XMPP.m │ │ │ ├── NSXMLElement+XMPP.h │ │ │ └── NSXMLElement+XMPP.m │ │ │ ├── Core │ │ │ ├── XMPP.h │ │ │ ├── XMPPElement.h │ │ │ ├── XMPPElement.m │ │ │ ├── XMPPIQ.h │ │ │ ├── XMPPIQ.m │ │ │ ├── XMPPInternal.h │ │ │ ├── XMPPJID.h │ │ │ ├── XMPPJID.m │ │ │ ├── XMPPLogging.h │ │ │ ├── XMPPMessage.h │ │ │ ├── XMPPMessage.m │ │ │ ├── XMPPModule.h │ │ │ ├── XMPPModule.m │ │ │ ├── XMPPParser.h │ │ │ ├── XMPPParser.m │ │ │ ├── XMPPPresence.h │ │ │ ├── XMPPPresence.m │ │ │ ├── XMPPStream.h │ │ │ └── XMPPStream.m │ │ │ ├── Extensions │ │ │ ├── .DS_Store │ │ │ ├── BandwidthMonitor │ │ │ │ ├── XMPPBandwidthMonitor.h │ │ │ │ └── XMPPBandwidthMonitor.m │ │ │ ├── CoreDataStorage │ │ │ │ ├── XMPPCoreDataStorage.h │ │ │ │ ├── XMPPCoreDataStorage.m │ │ │ │ └── XMPPCoreDataStorageProtected.h │ │ │ ├── GoogleSharedStatus │ │ │ │ ├── XMPPGoogleSharedStatus.h │ │ │ │ └── XMPPGoogleSharedStatus.m │ │ │ ├── ProcessOne │ │ │ │ ├── XMPPProcessOne.h │ │ │ │ └── XMPPProcessOne.m │ │ │ ├── Reconnect │ │ │ │ ├── XMPPReconnect.h │ │ │ │ └── XMPPReconnect.m │ │ │ ├── Roster │ │ │ │ ├── CoreDataStorage │ │ │ │ │ ├── XMPPGroupCoreDataStorageObject.h │ │ │ │ │ ├── XMPPGroupCoreDataStorageObject.m │ │ │ │ │ ├── XMPPResourceCoreDataStorageObject.h │ │ │ │ │ ├── XMPPResourceCoreDataStorageObject.m │ │ │ │ │ ├── XMPPRoster.xcdatamodel │ │ │ │ │ │ ├── elements │ │ │ │ │ │ └── layout │ │ │ │ │ ├── XMPPRosterCoreDataStorage.h │ │ │ │ │ ├── XMPPRosterCoreDataStorage.m │ │ │ │ │ ├── XMPPUserCoreDataStorageObject.h │ │ │ │ │ └── XMPPUserCoreDataStorageObject.m │ │ │ │ ├── MemoryStorage │ │ │ │ │ ├── XMPPResourceMemoryStorageObject.h │ │ │ │ │ ├── XMPPResourceMemoryStorageObject.m │ │ │ │ │ ├── XMPPRosterMemoryStorage.h │ │ │ │ │ ├── XMPPRosterMemoryStorage.m │ │ │ │ │ ├── XMPPRosterMemoryStoragePrivate.h │ │ │ │ │ ├── XMPPUserMemoryStorageObject.h │ │ │ │ │ └── XMPPUserMemoryStorageObject.m │ │ │ │ ├── XMPPResource.h │ │ │ │ ├── XMPPRoster.h │ │ │ │ ├── XMPPRoster.m │ │ │ │ ├── XMPPRosterPrivate.h │ │ │ │ └── XMPPUser.h │ │ │ ├── SystemInputActivityMonitor │ │ │ │ ├── XMPPSystemInputActivityMonitor.h │ │ │ │ └── XMPPSystemInputActivityMonitor.m │ │ │ ├── XEP-0009 │ │ │ │ ├── XMPPIQ+JabberRPC.h │ │ │ │ ├── XMPPIQ+JabberRPC.m │ │ │ │ ├── XMPPIQ+JabberRPCResonse.h │ │ │ │ ├── XMPPIQ+JabberRPCResonse.m │ │ │ │ ├── XMPPJabberRPCModule.h │ │ │ │ └── XMPPJabberRPCModule.m │ │ │ ├── XEP-0012 │ │ │ │ ├── XMPPIQ+LastActivity.h │ │ │ │ ├── XMPPIQ+LastActivity.m │ │ │ │ ├── XMPPLastActivity.h │ │ │ │ └── XMPPLastActivity.m │ │ │ ├── XEP-0016 │ │ │ │ ├── XMPPPrivacy.h │ │ │ │ └── XMPPPrivacy.m │ │ │ ├── XEP-0045 │ │ │ │ ├── CoreDataStorage │ │ │ │ │ ├── XMPPRoom.xcdatamodeld │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── XMPPRoom.xcdatamodel │ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── XMPPRoomCoreDataStorage.h │ │ │ │ │ ├── XMPPRoomCoreDataStorage.m │ │ │ │ │ ├── XMPPRoomMessageCoreDataStorageObject.h │ │ │ │ │ ├── XMPPRoomMessageCoreDataStorageObject.m │ │ │ │ │ ├── XMPPRoomOccupantCoreDataStorageObject.h │ │ │ │ │ └── XMPPRoomOccupantCoreDataStorageObject.m │ │ │ │ ├── HybridStorage │ │ │ │ │ ├── XMPPRoomHybrid.xcdatamodeld │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── XMPPRoomHybrid.xcdatamodel │ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── XMPPRoomHybridStorage.h │ │ │ │ │ ├── XMPPRoomHybridStorage.m │ │ │ │ │ ├── XMPPRoomHybridStorageProtected.h │ │ │ │ │ ├── XMPPRoomMessageHybridCoreDataStorageObject.h │ │ │ │ │ ├── XMPPRoomMessageHybridCoreDataStorageObject.m │ │ │ │ │ ├── XMPPRoomOccupantHybridMemoryStorageObject.h │ │ │ │ │ └── XMPPRoomOccupantHybridMemoryStorageObject.m │ │ │ │ ├── MemoryStorage │ │ │ │ │ ├── XMPPRoomMemoryStorage.h │ │ │ │ │ ├── XMPPRoomMemoryStorage.m │ │ │ │ │ ├── XMPPRoomMessageMemoryStorageObject.h │ │ │ │ │ ├── XMPPRoomMessageMemoryStorageObject.m │ │ │ │ │ ├── XMPPRoomOccupantMemoryStorageObject.h │ │ │ │ │ └── XMPPRoomOccupantMemoryStorageObject.m │ │ │ │ ├── XMPPMUC.h │ │ │ │ ├── XMPPMUC.m │ │ │ │ ├── XMPPMessage+XEP0045.h │ │ │ │ ├── XMPPMessage+XEP0045.m │ │ │ │ ├── XMPPRoom.h │ │ │ │ ├── XMPPRoom.m │ │ │ │ ├── XMPPRoomMessage.h │ │ │ │ ├── XMPPRoomOccupant.h │ │ │ │ └── XMPPRoomPrivate.h │ │ │ ├── XEP-0054 │ │ │ │ ├── CoreDataStorage │ │ │ │ │ ├── XMPPvCard.xcdatamodeld │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── XMPPvCard.xcdatamodel │ │ │ │ │ │ │ ├── elements │ │ │ │ │ │ │ └── layout │ │ │ │ │ ├── XMPPvCardAvatarCoreDataStorageObject.h │ │ │ │ │ ├── XMPPvCardAvatarCoreDataStorageObject.m │ │ │ │ │ ├── XMPPvCardCoreDataStorage.h │ │ │ │ │ ├── XMPPvCardCoreDataStorage.m │ │ │ │ │ ├── XMPPvCardCoreDataStorageObject.h │ │ │ │ │ ├── XMPPvCardCoreDataStorageObject.m │ │ │ │ │ ├── XMPPvCardTempCoreDataStorageObject.h │ │ │ │ │ └── XMPPvCardTempCoreDataStorageObject.m │ │ │ │ ├── XMPPvCardTemp.h │ │ │ │ ├── XMPPvCardTemp.m │ │ │ │ ├── XMPPvCardTempAdr.h │ │ │ │ ├── XMPPvCardTempAdr.m │ │ │ │ ├── XMPPvCardTempAdrTypes.h │ │ │ │ ├── XMPPvCardTempAdrTypes.m │ │ │ │ ├── XMPPvCardTempBase.h │ │ │ │ ├── XMPPvCardTempBase.m │ │ │ │ ├── XMPPvCardTempEmail.h │ │ │ │ ├── XMPPvCardTempEmail.m │ │ │ │ ├── XMPPvCardTempLabel.h │ │ │ │ ├── XMPPvCardTempLabel.m │ │ │ │ ├── XMPPvCardTempModule.h │ │ │ │ ├── XMPPvCardTempModule.m │ │ │ │ ├── XMPPvCardTempTel.h │ │ │ │ └── XMPPvCardTempTel.m │ │ │ ├── XEP-0059 │ │ │ │ ├── NSXMLElement+XEP_0059.h │ │ │ │ ├── NSXMLElement+XEP_0059.m │ │ │ │ ├── XMPPResultSet.h │ │ │ │ └── XMPPResultSet.m │ │ │ ├── XEP-0060 │ │ │ │ ├── XMPPIQ+XEP_0060.h │ │ │ │ ├── XMPPIQ+XEP_0060.m │ │ │ │ ├── XMPPPubSub.h │ │ │ │ └── XMPPPubSub.m │ │ │ ├── XEP-0065 │ │ │ │ ├── TURNSocket.h │ │ │ │ └── TURNSocket.m │ │ │ ├── XEP-0066 │ │ │ │ ├── XMPPIQ+XEP_0066.h │ │ │ │ ├── XMPPIQ+XEP_0066.m │ │ │ │ ├── XMPPMessage+XEP_0066.h │ │ │ │ └── XMPPMessage+XEP_0066.m │ │ │ ├── XEP-0082 │ │ │ │ ├── NSDate+XMPPDateTimeProfiles.h │ │ │ │ ├── NSDate+XMPPDateTimeProfiles.m │ │ │ │ ├── XMPPDateTimeProfiles.h │ │ │ │ └── XMPPDateTimeProfiles.m │ │ │ ├── XEP-0085 │ │ │ │ ├── XMPPMessage+XEP_0085.h │ │ │ │ └── XMPPMessage+XEP_0085.m │ │ │ ├── XEP-0092 │ │ │ │ ├── XMPPSoftwareVersion.h │ │ │ │ └── XMPPSoftwareVersion.m │ │ │ ├── XEP-0100 │ │ │ │ ├── XMPPTransports.h │ │ │ │ └── XMPPTransports.m │ │ │ ├── XEP-0106 │ │ │ │ ├── NSString+XEP_0106.h │ │ │ │ └── NSString+XEP_0106.m │ │ │ ├── XEP-0115 │ │ │ │ ├── CoreDataStorage │ │ │ │ │ ├── XMPPCapabilities.xcdatamodel │ │ │ │ │ │ ├── elements │ │ │ │ │ │ └── layout │ │ │ │ │ ├── XMPPCapabilitiesCoreDataStorage.h │ │ │ │ │ ├── XMPPCapabilitiesCoreDataStorage.m │ │ │ │ │ ├── XMPPCapsCoreDataStorageObject.h │ │ │ │ │ ├── XMPPCapsCoreDataStorageObject.m │ │ │ │ │ ├── XMPPCapsResourceCoreDataStorageObject.h │ │ │ │ │ └── XMPPCapsResourceCoreDataStorageObject.m │ │ │ │ ├── XMPPCapabilities.h │ │ │ │ └── XMPPCapabilities.m │ │ │ ├── XEP-0136 │ │ │ │ ├── CoreDataStorage │ │ │ │ │ ├── XMPPMessageArchiving.xcdatamodeld │ │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ │ └── XMPPMessageArchiving.xcdatamodel │ │ │ │ │ │ │ └── contents │ │ │ │ │ ├── XMPPMessageArchivingCoreDataStorage.h │ │ │ │ │ ├── XMPPMessageArchivingCoreDataStorage.m │ │ │ │ │ ├── XMPPMessageArchiving_Contact_CoreDataObject.h │ │ │ │ │ ├── XMPPMessageArchiving_Contact_CoreDataObject.m │ │ │ │ │ ├── XMPPMessageArchiving_Message_CoreDataObject.h │ │ │ │ │ └── XMPPMessageArchiving_Message_CoreDataObject.m │ │ │ │ ├── XMPPMessageArchiving.h │ │ │ │ └── XMPPMessageArchiving.m │ │ │ ├── XEP-0153 │ │ │ │ ├── XMPPvCardAvatarModule.h │ │ │ │ └── XMPPvCardAvatarModule.m │ │ │ ├── XEP-0172 │ │ │ │ ├── XMPPMessage+XEP_0172.h │ │ │ │ ├── XMPPMessage+XEP_0172.m │ │ │ │ ├── XMPPPresence+XEP_0172.h │ │ │ │ └── XMPPPresence+XEP_0172.m │ │ │ ├── XEP-0184 │ │ │ │ ├── XMPPMessage+XEP_0184.h │ │ │ │ ├── XMPPMessage+XEP_0184.m │ │ │ │ ├── XMPPMessageDeliveryReceipts.h │ │ │ │ └── XMPPMessageDeliveryReceipts.m │ │ │ ├── XEP-0199 │ │ │ │ ├── XMPPAutoPing.h │ │ │ │ ├── XMPPAutoPing.m │ │ │ │ ├── XMPPPing.h │ │ │ │ └── XMPPPing.m │ │ │ ├── XEP-0202 │ │ │ │ ├── XMPPAutoTime.h │ │ │ │ ├── XMPPAutoTime.m │ │ │ │ ├── XMPPTime.h │ │ │ │ └── XMPPTime.m │ │ │ ├── XEP-0203 │ │ │ │ ├── NSXMLElement+XEP_0203.h │ │ │ │ └── NSXMLElement+XEP_0203.m │ │ │ ├── XEP-0223 │ │ │ │ ├── XEP_0223.h │ │ │ │ └── XEP_0223.m │ │ │ ├── XEP-0224 │ │ │ │ ├── XMPPAttentionModule.h │ │ │ │ ├── XMPPAttentionModule.m │ │ │ │ ├── XMPPMessage+XEP_0224.h │ │ │ │ └── XMPPMessage+XEP_0224.m │ │ │ ├── XEP-0297 │ │ │ │ ├── NSXMLElement+XEP_0297.h │ │ │ │ └── NSXMLElement+XEP_0297.m │ │ │ ├── XEP-0308 │ │ │ │ ├── XMPPMessage+XEP_0308.h │ │ │ │ └── XMPPMessage+XEP_0308.m │ │ │ └── XEP-0335 │ │ │ │ ├── NSXMLElement+XEP_0335.h │ │ │ │ └── NSXMLElement+XEP_0335.m │ │ │ ├── Utilities │ │ │ ├── DDList.h │ │ │ ├── DDList.m │ │ │ ├── GCDMulticastDelegate.h │ │ │ ├── GCDMulticastDelegate.m │ │ │ ├── RFImageToDataTransformer.h │ │ │ ├── RFImageToDataTransformer.m │ │ │ ├── XMPPIDTracker.h │ │ │ ├── XMPPIDTracker.m │ │ │ ├── XMPPSRVResolver.h │ │ │ ├── XMPPSRVResolver.m │ │ │ ├── XMPPStringPrep.h │ │ │ └── XMPPStringPrep.m │ │ │ ├── Vendor │ │ │ ├── .DS_Store │ │ │ ├── CocoaAsyncSocket │ │ │ │ ├── GCDAsyncSocket.h │ │ │ │ └── GCDAsyncSocket.m │ │ │ ├── CocoaLumberjack │ │ │ │ ├── DDASLLogger.h │ │ │ │ ├── DDASLLogger.m │ │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ │ ├── DDAbstractDatabaseLogger.m │ │ │ │ ├── DDFileLogger.h │ │ │ │ ├── DDFileLogger.m │ │ │ │ ├── DDLog.h │ │ │ │ ├── DDLog.m │ │ │ │ ├── DDTTYLogger.h │ │ │ │ ├── DDTTYLogger.m │ │ │ │ └── Extensions │ │ │ │ │ ├── ContextFilterLogFormatter.h │ │ │ │ │ ├── ContextFilterLogFormatter.m │ │ │ │ │ ├── DispatchQueueLogFormatter.h │ │ │ │ │ ├── DispatchQueueLogFormatter.m │ │ │ │ │ └── README.txt │ │ │ ├── KissXML │ │ │ │ ├── Categories │ │ │ │ │ ├── NSString+DDXML.h │ │ │ │ │ └── NSString+DDXML.m │ │ │ │ ├── DDXML.h │ │ │ │ ├── DDXMLDocument.h │ │ │ │ ├── DDXMLDocument.m │ │ │ │ ├── DDXMLElement.h │ │ │ │ ├── DDXMLElement.m │ │ │ │ ├── DDXMLNode.h │ │ │ │ ├── DDXMLNode.m │ │ │ │ └── Private │ │ │ │ │ └── DDXMLPrivate.h │ │ │ └── libidn │ │ │ │ ├── build-libidn.sh │ │ │ │ ├── idn-int.h │ │ │ │ ├── libidn.a │ │ │ │ └── stringprep.h │ │ │ └── XMPPFramework.h │ │ ├── utils │ │ ├── Global.h │ │ ├── Global.m │ │ ├── GroupChatUtils.h │ │ ├── GroupChatUtils.m │ │ ├── QSUtils.h │ │ ├── QSUtils.m │ │ ├── RecordUtils.h │ │ ├── RecordUtils.m │ │ ├── XMPPUtils.h │ │ ├── XMPPUtils.m │ │ ├── messageNotificationUtils.h │ │ └── messageNotificationUtils.m │ │ └── views │ │ ├── .DS_Store │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── customCell │ │ ├── MessageNotificationCell.h │ │ ├── MessageNotificationCell.m │ │ ├── MyFriendCell.h │ │ ├── MyFriendCell.m │ │ ├── NoChatCell.h │ │ ├── NoChatCell.m │ │ ├── TDBadgedCell.h │ │ ├── TDBadgedCell.m │ │ ├── chatContentCell.h │ │ ├── chatContentCell.m │ │ ├── chatListCell.h │ │ ├── chatListCell.m │ │ ├── createGroupChatCell.h │ │ └── createGroupChatCell.m │ │ └── customView │ │ ├── .DS_Store │ │ ├── chatView.h │ │ └── chatView.m └── QShareTests │ ├── QShareTests-Info.plist │ ├── QShareTests.m │ └── en.lproj │ └── InfoPlist.strings └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /QShare_iOS/QShare.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /QShare_iOS/QShare.xcodeproj/project.xcworkspace/xcuserdata/pengweijo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare.xcodeproj/project.xcworkspace/xcuserdata/pengweijo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /QShare_iOS/QShare.xcodeproj/project.xcworkspace/xcuserdata/pengweijo.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare.xcodeproj/project.xcworkspace/xcuserdata/pengweijo.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /QShare_iOS/QShare.xcodeproj/xcuserdata/pengweijo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare.xcodeproj/xcuserdata/pengweijo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /QShare_iOS/QShare.xcodeproj/xcuserdata/pengweijo.xcuserdatad/xcschemes/QShare.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare.xcodeproj/xcuserdata/pengweijo.xcuserdatad/xcschemes/QShare.xcscheme -------------------------------------------------------------------------------- /QShare_iOS/QShare.xcodeproj/xcuserdata/pengweijo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare.xcodeproj/xcuserdata/pengweijo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /QShare_iOS/QShare/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/first.imageset/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/first.imageset/first.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/first.imageset/first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/first.imageset/first@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/second.imageset/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/second.imageset/second.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/Images.xcassets/second.imageset/second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Images.xcassets/second.imageset/second@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/Supporting Files/QShare-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Supporting Files/QShare-Info.plist -------------------------------------------------------------------------------- /QShare_iOS/QShare/Supporting Files/QShare-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Supporting Files/QShare-Prefix.pch -------------------------------------------------------------------------------- /QShare_iOS/QShare/Supporting Files/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /QShare_iOS/QShare/Supporting Files/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/Supporting Files/main.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/audio-volume-high-panel-reverse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/audio-volume-high-panel-reverse@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/audio-volume-high-panel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/audio-volume-high-panel@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/contact.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/groupContact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/groupContact.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/groupInfo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/groupInfo@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/EmotionDefaut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/EmotionDefaut@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/SignUpPasswordIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/SignUpPasswordIcon@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/SystemTipBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/SystemTipBg@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewBkg@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewBkg@2x.jpg -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewBkg_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewBkg_Black@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewEmotion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewEmotion@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewEmotionHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewEmotionHL@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewInputText@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewInputText@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewInputTextHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewInputTextHL@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewInputVoice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewInputVoice@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewInputVoiceHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewInputVoiceHL@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewKeyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewKeyboard@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewKeyboardHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/ToolViewKeyboardHL@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/TypeSelectorBtnHL_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/TypeSelectorBtnHL_Black@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/TypeSelectorBtn_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/TypeSelectorBtn_Black@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/UserHeaderImageBox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/UserHeaderImageBox@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/VOIPReceiverVoiceNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/VOIPReceiverVoiceNodeBkg@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/VOIPReceiverVoiceNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/VOIPReceiverVoiceNodeBkgHL@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/VOIPSenderVoiceNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/VOIPSenderVoiceNodeBkg@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/VOIPSenderVoiceNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/VOIPSenderVoiceNodeBkgHL@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemoreAdd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemoreAdd@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_friendcard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_friendcard@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_location@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_pic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_pic@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_video@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_voiceinput@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_voiceinput@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_voipvoice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_voipvoice@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_wxtalk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/sharemore_wxtalk@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_badge@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_contacts@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_contactsHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_contactsHL@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_discover.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_discover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_discover@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_discoverHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_discoverHL.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_discoverHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_discoverHL@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_mainframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_mainframe.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_mainframe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_mainframe@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_mainframeHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_mainframeHL.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_mainframeHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_mainframeHL@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_me.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_me@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_meHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_meHL.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_meHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/ChatIMG/wechatTemp/tabbar_meHL@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingBkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingBkg.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingBkg@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal001.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal001@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal002.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal002@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal003.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal003@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal004.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal004@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal004@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal005.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal005@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal005@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal006.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal006@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal006@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal007.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal007@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal007@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal008.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Record/RecordingSignal008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Record/RecordingSignal008@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Setting/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Setting/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Setting/avatar_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Setting/avatar_default.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/Setting/avatar_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/Setting/avatar_default@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/bubble/bubbleMine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/bubble/bubbleMine.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/bubble/bubbleMine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/bubble/bubbleMine@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/bubble/bubbleSomeone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/bubble/bubbleSomeone.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/bubble/bubbleSomeone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/bubble/bubbleSomeone@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/bubble/missingAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/bubble/missingAvatar.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/bubble/missingAvatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/bubble/missingAvatar@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/bubble/typingMine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/bubble/typingMine.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/bubble/typingMine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/bubble/typingMine@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/bubble/typingSomeone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/bubble/typingSomeone.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/bubble/typingSomeone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/bubble/typingSomeone@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/common/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/common/checkmark.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/res/images/common/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/res/images/common/warning.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/XPAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/XPAppDelegate.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/XPAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/XPAppDelegate.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/chat/ChatDetailVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/chat/ChatDetailVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/chat/ChatDetailVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/chat/ChatDetailVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/chat/ChatMainVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/chat/ChatMainVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/chat/ChatMainVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/chat/ChatMainVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/chat/CreatOrSelectGroupChatVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/chat/CreatOrSelectGroupChatVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/chat/CreatOrSelectGroupChatVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/chat/CreatOrSelectGroupChatVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/discovery/DiscoveryMainVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/discovery/DiscoveryMainVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/discovery/DiscoveryMainVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/discovery/DiscoveryMainVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/AddFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/AddFriends.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/AddFriends.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/AddFriends.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/ChatVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/ChatVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/ChatVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/ChatVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/ContactInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/ContactInfo.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/ContactInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/ContactInfo.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/FriendsMainVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/FriendsMainVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/FriendsMainVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/FriendsMainVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/GroupInfoVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/GroupInfoVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/GroupInfoVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/GroupInfoVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/GroupMembers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/GroupMembers.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/GroupMembers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/GroupMembers.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/GroupsChatVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/GroupsChatVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/GroupsChatVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/GroupsChatVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/GroupsContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/GroupsContact.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/GroupsContact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/GroupsContact.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/InviteGroupContacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/InviteGroupContacts.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/InviteGroupContacts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/InviteGroupContacts.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/MyAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/MyAnnotation.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/MyAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/MyAnnotation.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/MyLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/MyLocation.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/MyLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/MyLocation.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/viewLocationVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/viewLocationVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/friends/viewLocationVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/friends/viewLocationVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/login/EnrollVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/login/EnrollVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/login/EnrollVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/login/EnrollVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/login/LoginVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/login/LoginVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/login/LoginVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/login/LoginVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MeMainVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MeMainVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MeMainVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MeMainVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MessageNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MessageNotification.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MessageNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MessageNotification.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MessageNotificationDetail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MessageNotificationDetail.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MessageNotificationDetail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MessageNotificationDetail.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MyvCardDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MyvCardDelegate.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MyvCardIntro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MyvCardIntro.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MyvCardIntro.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MyvCardIntro.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MyvCardSex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MyvCardSex.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MyvCardSex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MyvCardSex.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MyvCardVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MyvCardVC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/MyvCardVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/MyvCardVC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/vCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/vCard.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/controllers/me/vCard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/controllers/me/vCard.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/Base64/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/Base64/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/Base64/NSData+Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/Base64/NSData+Base64.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/Base64/NSData+Base64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/Base64/NSData+Base64.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/Base64/NSString+Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/Base64/NSString+Base64.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/Base64/NSString+Base64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/Base64/NSString+Base64.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabase.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabase.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabasePool.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabasePool.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabaseQueue.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/FMDatabaseQueue.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/FMResultSet.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/FMDB/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/FMDB/FMResultSet.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionCheckmarkView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionCheckmarkView.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionCheckmarkView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionCheckmarkView.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionFooterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionFooterView.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionFooterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionFooterView.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionOverlayView.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionOverlayView.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewController.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewController.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewLayout.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBAssetsCollectionViewLayout.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerController.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerController.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerGroupCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerGroupCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerGroupCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerGroupCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerThumbnailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerThumbnailView.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerThumbnailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/QBImagePickerThumbnailView.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/Resources/en.lproj/QBImagePickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/Resources/en.lproj/QBImagePickerController.strings -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/QBImagePickerController/Resources/ja.lproj/QBImagePickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/QBImagePickerController/Resources/ja.lproj/QBImagePickerController.strings -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/NSBubbleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/NSBubbleData.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/NSBubbleData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/NSBubbleData.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleHeaderTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleHeaderTableViewCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleHeaderTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleHeaderTableViewCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTableView.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTableView.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTableViewCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTableViewCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTableViewDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTableViewDataSource.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTypingTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTypingTableViewCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTypingTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UIBubbleTableView/UIBubbleTypingTableViewCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocial.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialAccountManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialAccountManager.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialBar.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialConfig.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialControllerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialControllerService.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialControllerServiceComment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialControllerServiceComment.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialData.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialDataService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialDataService.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialSnsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialSnsData.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialSnsPlatformManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialSnsPlatformManager.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialSnsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/Header/UMSocialSnsService.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSCommentDetailController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSCommentDetailController.xib -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSCommentInputController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSCommentInputController.xib -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSCommentInputControlleriPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSCommentInputControlleriPad.xib -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSLoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSLoginViewController.xib -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSShareListController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSShareListController.xib -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMShareEditViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMShareEditViewController.xib -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMShareEditViewControlleriPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMShareEditViewControlleriPad.xib -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSnsAccountViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/SocialSDKXib/UMSnsAccountViewController.xib -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_account_login@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_account_login@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_input@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_input@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_view_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_view_cell.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_find@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_find@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_bar_bg_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_bar_bg_white@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_oauth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_oauth@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at_tap.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/blackArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/blackArrow.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/blackArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/blackArrow@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/blueArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/blueArrow.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/blueArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/blueArrow@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/grayArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/grayArrow.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/grayArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/grayArrow@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_tap.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_on@2x.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_on_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_on_white.png -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Sound/shake_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/UMSocialSDKResourcesNew.bundle/Sound/shake_sound.mp3 -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/en.lproj/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/en.lproj/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/en.lproj/UMSocialLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/en.lproj/UMSocialLocalizable.strings -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/frameworks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/frameworks/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/frameworks/Wechat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/frameworks/Wechat/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/frameworks/Wechat/WXApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/frameworks/Wechat/WXApi.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/frameworks/Wechat/WXApiObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/frameworks/Wechat/WXApiObject.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/frameworks/Wechat/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/frameworks/Wechat/libWeChatSDK.a -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/libUMSocial_Sdk_3.3.1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/libUMSocial_Sdk_3.3.1.a -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/libUMSocial_Sdk_Comment_3.3.1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/libUMSocial_Sdk_Comment_3.3.1.a -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/zh-Hans.lproj/UMSocialLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/UMSocial_Sdk_3.3.1/zh-Hans.lproj/UMSocialLocalizable.strings -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Anonymous/XMPPAnonymousAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Anonymous/XMPPAnonymousAuthentication.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Anonymous/XMPPAnonymousAuthentication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Anonymous/XMPPAnonymousAuthentication.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Deprecated-Digest/XMPPDeprecatedDigestAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Deprecated-Digest/XMPPDeprecatedDigestAuthentication.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Deprecated-Digest/XMPPDeprecatedDigestAuthentication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Deprecated-Digest/XMPPDeprecatedDigestAuthentication.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Deprecated-Plain/XMPPDeprecatedPlainAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Deprecated-Plain/XMPPDeprecatedPlainAuthentication.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Deprecated-Plain/XMPPDeprecatedPlainAuthentication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Deprecated-Plain/XMPPDeprecatedPlainAuthentication.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Digest-MD5/XMPPDigestMD5Authentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Digest-MD5/XMPPDigestMD5Authentication.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Digest-MD5/XMPPDigestMD5Authentication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Digest-MD5/XMPPDigestMD5Authentication.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Plain/XMPPPlainAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Plain/XMPPPlainAuthentication.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Plain/XMPPPlainAuthentication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/Plain/XMPPPlainAuthentication.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/XMPPSASLAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Authentication/XMPPSASLAuthentication.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSData+XMPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSData+XMPP.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSData+XMPP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSData+XMPP.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSNumber+XMPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSNumber+XMPP.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSNumber+XMPP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSNumber+XMPP.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSXMLElement+XMPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSXMLElement+XMPP.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSXMLElement+XMPP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Categories/NSXMLElement+XMPP.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPP.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPElement.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPElement.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPIQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPIQ.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPIQ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPIQ.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPInternal.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPJID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPJID.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPJID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPJID.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPLogging.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPMessage.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPMessage.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPModule.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPModule.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPParser.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPParser.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPPresence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPPresence.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPPresence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPPresence.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPStream.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Core/XMPPStream.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/BandwidthMonitor/XMPPBandwidthMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/BandwidthMonitor/XMPPBandwidthMonitor.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/BandwidthMonitor/XMPPBandwidthMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/BandwidthMonitor/XMPPBandwidthMonitor.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/CoreDataStorage/XMPPCoreDataStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/CoreDataStorage/XMPPCoreDataStorage.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/CoreDataStorage/XMPPCoreDataStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/CoreDataStorage/XMPPCoreDataStorage.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/CoreDataStorage/XMPPCoreDataStorageProtected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/CoreDataStorage/XMPPCoreDataStorageProtected.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/GoogleSharedStatus/XMPPGoogleSharedStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/GoogleSharedStatus/XMPPGoogleSharedStatus.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/GoogleSharedStatus/XMPPGoogleSharedStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/GoogleSharedStatus/XMPPGoogleSharedStatus.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/ProcessOne/XMPPProcessOne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/ProcessOne/XMPPProcessOne.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/ProcessOne/XMPPProcessOne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/ProcessOne/XMPPProcessOne.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Reconnect/XMPPReconnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Reconnect/XMPPReconnect.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Reconnect/XMPPReconnect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Reconnect/XMPPReconnect.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPGroupCoreDataStorageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPGroupCoreDataStorageObject.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPGroupCoreDataStorageObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPGroupCoreDataStorageObject.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPResourceCoreDataStorageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPResourceCoreDataStorageObject.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPResourceCoreDataStorageObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPResourceCoreDataStorageObject.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPRoster.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPRoster.xcdatamodel/elements -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPRoster.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPRoster.xcdatamodel/layout -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPRosterCoreDataStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPRosterCoreDataStorage.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPRosterCoreDataStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPRosterCoreDataStorage.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPUserCoreDataStorageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPUserCoreDataStorageObject.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPUserCoreDataStorageObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/CoreDataStorage/XMPPUserCoreDataStorageObject.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPResourceMemoryStorageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPResourceMemoryStorageObject.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPResourceMemoryStorageObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPResourceMemoryStorageObject.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPRosterMemoryStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPRosterMemoryStorage.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPRosterMemoryStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPRosterMemoryStorage.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPRosterMemoryStoragePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPRosterMemoryStoragePrivate.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPUserMemoryStorageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPUserMemoryStorageObject.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPUserMemoryStorageObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/MemoryStorage/XMPPUserMemoryStorageObject.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/XMPPResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/XMPPResource.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/XMPPRoster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/XMPPRoster.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/XMPPRoster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/XMPPRoster.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/XMPPRosterPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/XMPPRosterPrivate.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/XMPPUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/Roster/XMPPUser.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/SystemInputActivityMonitor/XMPPSystemInputActivityMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/SystemInputActivityMonitor/XMPPSystemInputActivityMonitor.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/SystemInputActivityMonitor/XMPPSystemInputActivityMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/SystemInputActivityMonitor/XMPPSystemInputActivityMonitor.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPIQ+JabberRPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPIQ+JabberRPC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPIQ+JabberRPC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPIQ+JabberRPC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPIQ+JabberRPCResonse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPIQ+JabberRPCResonse.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPIQ+JabberRPCResonse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPIQ+JabberRPCResonse.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPJabberRPCModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPJabberRPCModule.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPJabberRPCModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0009/XMPPJabberRPCModule.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0012/XMPPIQ+LastActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0012/XMPPIQ+LastActivity.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0012/XMPPIQ+LastActivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0012/XMPPIQ+LastActivity.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0012/XMPPLastActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0012/XMPPLastActivity.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0012/XMPPLastActivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0012/XMPPLastActivity.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0016/XMPPPrivacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0016/XMPPPrivacy.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0016/XMPPPrivacy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0016/XMPPPrivacy.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/CoreDataStorage/XMPPRoomCoreDataStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/CoreDataStorage/XMPPRoomCoreDataStorage.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/CoreDataStorage/XMPPRoomCoreDataStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/CoreDataStorage/XMPPRoomCoreDataStorage.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/HybridStorage/XMPPRoomHybridStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/HybridStorage/XMPPRoomHybridStorage.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/HybridStorage/XMPPRoomHybridStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/HybridStorage/XMPPRoomHybridStorage.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/HybridStorage/XMPPRoomHybridStorageProtected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/HybridStorage/XMPPRoomHybridStorageProtected.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/MemoryStorage/XMPPRoomMemoryStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/MemoryStorage/XMPPRoomMemoryStorage.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/MemoryStorage/XMPPRoomMemoryStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/MemoryStorage/XMPPRoomMemoryStorage.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/MemoryStorage/XMPPRoomMessageMemoryStorageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/MemoryStorage/XMPPRoomMessageMemoryStorageObject.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/MemoryStorage/XMPPRoomMessageMemoryStorageObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/MemoryStorage/XMPPRoomMessageMemoryStorageObject.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPMUC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPMUC.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPMUC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPMUC.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPMessage+XEP0045.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPMessage+XEP0045.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPMessage+XEP0045.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPMessage+XEP0045.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPRoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPRoom.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPRoom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPRoom.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPRoomMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPRoomMessage.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPRoomOccupant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPRoomOccupant.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPRoomPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0045/XMPPRoomPrivate.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/CoreDataStorage/XMPPvCardCoreDataStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/CoreDataStorage/XMPPvCardCoreDataStorage.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/CoreDataStorage/XMPPvCardCoreDataStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/CoreDataStorage/XMPPvCardCoreDataStorage.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/CoreDataStorage/XMPPvCardCoreDataStorageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/CoreDataStorage/XMPPvCardCoreDataStorageObject.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/CoreDataStorage/XMPPvCardCoreDataStorageObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/CoreDataStorage/XMPPvCardCoreDataStorageObject.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTemp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTemp.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTemp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTemp.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempAdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempAdr.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempAdr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempAdr.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempAdrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempAdrTypes.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempAdrTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempAdrTypes.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempBase.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempBase.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempEmail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempEmail.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempEmail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempEmail.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempLabel.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempLabel.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempModule.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempModule.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempTel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempTel.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempTel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0054/XMPPvCardTempTel.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0059/NSXMLElement+XEP_0059.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0059/NSXMLElement+XEP_0059.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0059/NSXMLElement+XEP_0059.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0059/NSXMLElement+XEP_0059.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0059/XMPPResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0059/XMPPResultSet.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0059/XMPPResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0059/XMPPResultSet.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0060/XMPPIQ+XEP_0060.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0060/XMPPIQ+XEP_0060.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0060/XMPPIQ+XEP_0060.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0060/XMPPIQ+XEP_0060.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0060/XMPPPubSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0060/XMPPPubSub.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0060/XMPPPubSub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0060/XMPPPubSub.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0065/TURNSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0065/TURNSocket.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0065/TURNSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0065/TURNSocket.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0066/XMPPIQ+XEP_0066.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0066/XMPPIQ+XEP_0066.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0066/XMPPIQ+XEP_0066.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0066/XMPPIQ+XEP_0066.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0066/XMPPMessage+XEP_0066.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0066/XMPPMessage+XEP_0066.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0066/XMPPMessage+XEP_0066.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0066/XMPPMessage+XEP_0066.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0082/NSDate+XMPPDateTimeProfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0082/NSDate+XMPPDateTimeProfiles.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0082/NSDate+XMPPDateTimeProfiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0082/NSDate+XMPPDateTimeProfiles.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0082/XMPPDateTimeProfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0082/XMPPDateTimeProfiles.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0082/XMPPDateTimeProfiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0082/XMPPDateTimeProfiles.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0085/XMPPMessage+XEP_0085.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0085/XMPPMessage+XEP_0085.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0085/XMPPMessage+XEP_0085.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0085/XMPPMessage+XEP_0085.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0092/XMPPSoftwareVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0092/XMPPSoftwareVersion.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0092/XMPPSoftwareVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0092/XMPPSoftwareVersion.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0100/XMPPTransports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0100/XMPPTransports.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0100/XMPPTransports.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0100/XMPPTransports.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0106/NSString+XEP_0106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0106/NSString+XEP_0106.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0106/NSString+XEP_0106.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0106/NSString+XEP_0106.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/CoreDataStorage/XMPPCapabilitiesCoreDataStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/CoreDataStorage/XMPPCapabilitiesCoreDataStorage.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/CoreDataStorage/XMPPCapabilitiesCoreDataStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/CoreDataStorage/XMPPCapabilitiesCoreDataStorage.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/CoreDataStorage/XMPPCapsCoreDataStorageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/CoreDataStorage/XMPPCapsCoreDataStorageObject.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/CoreDataStorage/XMPPCapsCoreDataStorageObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/CoreDataStorage/XMPPCapsCoreDataStorageObject.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/XMPPCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/XMPPCapabilities.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/XMPPCapabilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0115/XMPPCapabilities.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0136/XMPPMessageArchiving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0136/XMPPMessageArchiving.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0136/XMPPMessageArchiving.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0136/XMPPMessageArchiving.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0153/XMPPvCardAvatarModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0153/XMPPvCardAvatarModule.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0153/XMPPvCardAvatarModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0153/XMPPvCardAvatarModule.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0172/XMPPMessage+XEP_0172.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0172/XMPPMessage+XEP_0172.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0172/XMPPMessage+XEP_0172.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0172/XMPPMessage+XEP_0172.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0172/XMPPPresence+XEP_0172.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0172/XMPPPresence+XEP_0172.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0172/XMPPPresence+XEP_0172.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0172/XMPPPresence+XEP_0172.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0184/XMPPMessage+XEP_0184.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0184/XMPPMessage+XEP_0184.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0184/XMPPMessage+XEP_0184.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0184/XMPPMessage+XEP_0184.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0184/XMPPMessageDeliveryReceipts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0184/XMPPMessageDeliveryReceipts.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0184/XMPPMessageDeliveryReceipts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0184/XMPPMessageDeliveryReceipts.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0199/XMPPAutoPing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0199/XMPPAutoPing.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0199/XMPPAutoPing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0199/XMPPAutoPing.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0199/XMPPPing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0199/XMPPPing.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0199/XMPPPing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0199/XMPPPing.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0202/XMPPAutoTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0202/XMPPAutoTime.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0202/XMPPAutoTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0202/XMPPAutoTime.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0202/XMPPTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0202/XMPPTime.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0202/XMPPTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0202/XMPPTime.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0203/NSXMLElement+XEP_0203.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0203/NSXMLElement+XEP_0203.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0203/NSXMLElement+XEP_0203.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0203/NSXMLElement+XEP_0203.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0223/XEP_0223.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0223/XEP_0223.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0223/XEP_0223.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0223/XEP_0223.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0224/XMPPAttentionModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0224/XMPPAttentionModule.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0224/XMPPAttentionModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0224/XMPPAttentionModule.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0224/XMPPMessage+XEP_0224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0224/XMPPMessage+XEP_0224.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0224/XMPPMessage+XEP_0224.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0224/XMPPMessage+XEP_0224.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0297/NSXMLElement+XEP_0297.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0297/NSXMLElement+XEP_0297.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0297/NSXMLElement+XEP_0297.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0297/NSXMLElement+XEP_0297.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0308/XMPPMessage+XEP_0308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0308/XMPPMessage+XEP_0308.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0308/XMPPMessage+XEP_0308.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0308/XMPPMessage+XEP_0308.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0335/NSXMLElement+XEP_0335.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0335/NSXMLElement+XEP_0335.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0335/NSXMLElement+XEP_0335.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Extensions/XEP-0335/NSXMLElement+XEP_0335.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/DDList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/DDList.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/DDList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/DDList.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/GCDMulticastDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/GCDMulticastDelegate.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/GCDMulticastDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/GCDMulticastDelegate.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/RFImageToDataTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/RFImageToDataTransformer.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/RFImageToDataTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/RFImageToDataTransformer.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPIDTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPIDTracker.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPIDTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPIDTracker.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPSRVResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPSRVResolver.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPSRVResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPSRVResolver.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPStringPrep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPStringPrep.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPStringPrep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Utilities/XMPPStringPrep.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaAsyncSocket/GCDAsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaAsyncSocket/GCDAsyncSocket.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaAsyncSocket/GCDAsyncSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaAsyncSocket/GCDAsyncSocket.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDASLLogger.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDASLLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDASLLogger.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDAbstractDatabaseLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDAbstractDatabaseLogger.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDFileLogger.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDFileLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDFileLogger.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDLog.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDLog.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDTTYLogger.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDTTYLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/DDTTYLogger.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/Extensions/ContextFilterLogFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/Extensions/ContextFilterLogFormatter.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/Extensions/ContextFilterLogFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/Extensions/ContextFilterLogFormatter.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/Extensions/DispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/Extensions/DispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/Extensions/DispatchQueueLogFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/Extensions/DispatchQueueLogFormatter.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/Extensions/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/CocoaLumberjack/Extensions/README.txt -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/Categories/NSString+DDXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/Categories/NSString+DDXML.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/Categories/NSString+DDXML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/Categories/NSString+DDXML.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXML.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLDocument.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLDocument.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLElement.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLElement.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLNode.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/DDXMLNode.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/Private/DDXMLPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/KissXML/Private/DDXMLPrivate.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/libidn/build-libidn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/libidn/build-libidn.sh -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/libidn/idn-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/libidn/idn-int.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/libidn/libidn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/libidn/libidn.a -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/libidn/stringprep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/Vendor/libidn/stringprep.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/thirdparty/xmppframework/XMPPFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/thirdparty/xmppframework/XMPPFramework.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/Global.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/Global.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/Global.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/GroupChatUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/GroupChatUtils.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/GroupChatUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/GroupChatUtils.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/QSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/QSUtils.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/QSUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/QSUtils.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/RecordUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/RecordUtils.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/RecordUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/RecordUtils.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/XMPPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/XMPPUtils.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/XMPPUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/XMPPUtils.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/messageNotificationUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/messageNotificationUtils.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/utils/messageNotificationUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/utils/messageNotificationUtils.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/MessageNotificationCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/MessageNotificationCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/MessageNotificationCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/MessageNotificationCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/MyFriendCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/MyFriendCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/MyFriendCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/MyFriendCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/NoChatCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/NoChatCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/NoChatCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/NoChatCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/TDBadgedCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/TDBadgedCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/TDBadgedCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/TDBadgedCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/chatContentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/chatContentCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/chatContentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/chatContentCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/chatListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/chatListCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/chatListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/chatListCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/createGroupChatCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/createGroupChatCell.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customCell/createGroupChatCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customCell/createGroupChatCell.m -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customView/.DS_Store -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customView/chatView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customView/chatView.h -------------------------------------------------------------------------------- /QShare_iOS/QShare/src/views/customView/chatView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShare/src/views/customView/chatView.m -------------------------------------------------------------------------------- /QShare_iOS/QShareTests/QShareTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShareTests/QShareTests-Info.plist -------------------------------------------------------------------------------- /QShare_iOS/QShareTests/QShareTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/QShare_iOS/QShareTests/QShareTests.m -------------------------------------------------------------------------------- /QShare_iOS/QShareTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vviicc/QShare_iOS/HEAD/README.md --------------------------------------------------------------------------------