├── .gitignore ├── LICENSE ├── Oncenote WatchKit App ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── Interface.storyboard └── Info.plist ├── Oncenote WatchKit Extension ├── Assets.xcassets │ └── README__ignoredByTemplate__ ├── ExtensionDelegate.h ├── ExtensionDelegate.m ├── GlanceController.h ├── GlanceController.m ├── Info.plist ├── InterfaceController.h ├── InterfaceController.m ├── NotificationController.h ├── NotificationController.m └── PushNotificationPayload.apns ├── Oncenote.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── chenyufeng.xcuserdatad │ └── xcschemes │ ├── Glance - Oncenote WatchKit App.xcscheme │ ├── Notification - Oncenote WatchKit App.xcscheme │ ├── Oncenote WatchKit App.xcscheme │ ├── Oncenote.xcscheme │ └── xcschememanagement.plist ├── Oncenote.xcworkspace └── contents.xcworkspacedata ├── Oncenote ├── AboutAppViewController.h ├── AboutAppViewController.m ├── AddNoteViewController.h ├── AddNoteViewController.m ├── AllNoteDetailViewController.h ├── AllNoteDetailViewController.m ├── AllNotesViewController.h ├── AllNotesViewController.m ├── AllUtils.h ├── AllUtils.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-29.png │ │ ├── icon-29@2x-1.png │ │ ├── icon-29@2x.png │ │ ├── icon-29@3x.png │ │ ├── icon-40.png │ │ ├── icon-40@2x-1.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-76.png │ │ └── icon-76@2x.png │ ├── Contents.json │ ├── LoginAppIcon.imageset │ │ ├── Contents.json │ │ └── LoginAppIcon.png │ ├── add_button.imageset │ │ ├── Contents.json │ │ └── add_button.png │ ├── back_button.imageset │ │ ├── Contents.json │ │ └── back_button.png │ ├── detail_search.imageset │ │ ├── Contents.json │ │ └── detail_search.png │ ├── guidepage0.imageset │ │ ├── Contents.json │ │ └── guidepage01.png │ ├── guidepage1.imageset │ │ ├── Contents.json │ │ └── guidepage02.png │ ├── guidepage2.imageset │ │ ├── Contents.json │ │ └── guidepage03.png │ ├── guidepage3.imageset │ │ ├── Contents.json │ │ └── guidepage04.png │ ├── iTunesArtwork.dataset │ │ ├── Contents.json │ │ └── iTunesArtwork │ ├── iTunesArtwork@2x.dataset │ │ ├── Contents.json │ │ └── iTunesArtwork@2x │ ├── icon-29.imageset │ │ ├── Contents.json │ │ ├── icon-29.png │ │ ├── icon-29@2x.png │ │ └── icon-29@3x.png │ ├── icon-40.imageset │ │ ├── Contents.json │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ └── icon-40@3x.png │ ├── icon-57.imageset │ │ ├── Contents.json │ │ ├── icon-57.png │ │ ├── icon-57@2x.png │ │ └── icon-57@3x.png │ ├── icon-60.imageset │ │ ├── Contents.json │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ └── icon-60@3x.png │ ├── main_alert.imageset │ │ ├── Contents.json │ │ └── main_alert@2x.png │ ├── main_chat.imageset │ │ ├── Contents.json │ │ └── main_chat@2x.png │ ├── main_list.imageset │ │ ├── Contents.json │ │ └── main_list@2x.png │ ├── main_photo.imageset │ │ ├── Contents.json │ │ └── main_photo@2x.png │ ├── main_text.imageset │ │ ├── Contents.json │ │ └── main_text@2x.png │ ├── navi_refresh.imageset │ │ ├── Contents.json │ │ └── navi_refresh@2x副本.png │ ├── navi_search.imageset │ │ ├── Contents.json │ │ └── navi_search@2x副本副本.png │ ├── navi_setting.imageset │ │ ├── Contents.json │ │ └── navi_setting@2x副本副本.png │ ├── share_button.imageset │ │ ├── Contents.json │ │ └── share_button.png │ ├── tableview_arrow.imageset │ │ ├── Contents.json │ │ └── QQ20151113-1@2x副本.png │ └── tableview_note.imageset │ │ ├── Contents.json │ │ └── tableview_note@2x副本.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── BmobOperation.h ├── BmobOperation.m ├── Constant.h ├── Constant.m ├── ForgetPasswordViewController.h ├── ForgetPasswordViewController.m ├── GuidePageViewController.h ├── GuidePageViewController.m ├── Info.plist ├── LaunchScreenViewController.h ├── LaunchScreenViewController.m ├── LoginViewController.h ├── LoginViewController.m ├── MOBFoundation.framework │ ├── Headers │ │ ├── IMOBFPlugin.h │ │ ├── MOBFApplication.h │ │ ├── MOBFColor.h │ │ ├── MOBFData.h │ │ ├── MOBFDataService.h │ │ ├── MOBFDate.h │ │ ├── MOBFDebug.h │ │ ├── MOBFDevice.h │ │ ├── MOBFHttpPostedFile.h │ │ ├── MOBFHttpService.h │ │ ├── MOBFImage.h │ │ ├── MOBFImageService.h │ │ ├── MOBFImageServiceTypeDef.h │ │ ├── MOBFJSContext.h │ │ ├── MOBFJSTypeDefine.h │ │ ├── MOBFJson.h │ │ ├── MOBFMedia.h │ │ ├── MOBFNotificationCenter.h │ │ ├── MOBFNumber.h │ │ ├── MOBFOAuthService.h │ │ ├── MOBFPluginManager.h │ │ ├── MOBFRSAHelper.h │ │ ├── MOBFRSAKey.h │ │ ├── MOBFRegex.h │ │ ├── MOBFString.h │ │ ├── MOBFViewController.h │ │ ├── MOBFXml.h │ │ ├── MOBFXmlNode.h │ │ └── MOBFoundation.h │ ├── Info.plist │ ├── MOBFoundation │ ├── en.lproj │ │ └── InfoPlist.strings │ └── readme ├── MainViewController.h ├── MainViewController.m ├── NicknameViewController.h ├── NicknameViewController.m ├── NoteDetailViewController.h ├── NoteDetailViewController.m ├── Notes.h ├── Notes.m ├── RegisterViewController.h ├── RegisterViewController.m ├── SMS_SDK.framework │ ├── Headers │ │ ├── SMSSDK+AddressBookMethods.h │ │ ├── SMSSDK+DeprecatedMethods.h │ │ ├── SMSSDK+ExtexdMethods.h │ │ ├── SMSSDK.h │ │ ├── SMSSDKAddressBook.h │ │ ├── SMSSDKCountryAndAreaCode.h │ │ ├── SMSSDKResultHanderDef.h │ │ └── SMSSDKUserInfo.h │ ├── Info.plist │ ├── SMS_SDK │ └── en.lproj │ │ └── InfoPlist.strings ├── SettingList.h ├── SettingList.m ├── SettingViewController.h ├── SettingViewController.m ├── UpdatePasswordViewController.h ├── UpdatePasswordViewController.m ├── main.m └── shareImg.png ├── OncenoteTests ├── Info.plist └── OncenoteTests.m ├── OncenoteUITests ├── Info.plist └── OncenoteUITests.m ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPRequestOperationManager.m │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── BmobSDK │ ├── BmobSDK.framework │ │ ├── BmobSDK │ │ ├── Headers │ │ │ ├── BQLQueryResult.h │ │ │ ├── Bmob.h │ │ │ ├── BmobACL.h │ │ │ ├── BmobCloud.h │ │ │ ├── BmobConfig.h │ │ │ ├── BmobErrorList.h │ │ │ ├── BmobEvent.h │ │ │ ├── BmobFile.h │ │ │ ├── BmobGPSSwitch.h │ │ │ ├── BmobGeoPoint.h │ │ │ ├── BmobImage.h │ │ │ ├── BmobInstallation.h │ │ │ ├── BmobMessage.h │ │ │ ├── BmobObject+Subclass.h │ │ │ ├── BmobObject.h │ │ │ ├── BmobObjectsBatch.h │ │ │ ├── BmobProFile.h │ │ │ ├── BmobPush.h │ │ │ ├── BmobQuery.h │ │ │ ├── BmobRelation.h │ │ │ ├── BmobRole.h │ │ │ ├── BmobSMS.h │ │ │ ├── BmobTableSchema.h │ │ │ └── BmobUser.h │ │ ├── Info.plist │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ └── ShareSDK3 │ │ │ ├── WBHttpRequest+WeiboGame.h │ │ │ ├── WBHttpRequest+WeiboShare.h │ │ │ ├── WBHttpRequest+WeiboToken.h │ │ │ ├── WBHttpRequest+WeiboUser.h │ │ │ ├── WBHttpRequest.h │ │ │ ├── WBSDKBasicButton.h │ │ │ ├── WBSDKCommentButton.h │ │ │ ├── WBSDKRelationshipButton.h │ │ │ ├── WXApi.h │ │ │ ├── WXApiObject.h │ │ │ ├── WechatAuthSDK.h │ │ │ ├── WeiboSDK+Statistics.h │ │ │ ├── WeiboSDK.h │ │ │ └── WeiboUser.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── BmobSDK │ │ └── BmobSDK │ │ │ ├── BQLQueryResult.h │ │ │ ├── Bmob.h │ │ │ ├── BmobACL.h │ │ │ ├── BmobCloud.h │ │ │ ├── BmobConfig.h │ │ │ ├── BmobErrorList.h │ │ │ ├── BmobEvent.h │ │ │ ├── BmobFile.h │ │ │ ├── BmobGPSSwitch.h │ │ │ ├── BmobGeoPoint.h │ │ │ ├── BmobImage.h │ │ │ ├── BmobInstallation.h │ │ │ ├── BmobMessage.h │ │ │ ├── BmobObject+Subclass.h │ │ │ ├── BmobObject.h │ │ │ ├── BmobObjectsBatch.h │ │ │ ├── BmobProFile.h │ │ │ ├── BmobPush.h │ │ │ ├── BmobQuery.h │ │ │ ├── BmobRelation.h │ │ │ ├── BmobRole.h │ │ │ ├── BmobSMS.h │ │ │ ├── BmobTableSchema.h │ │ │ └── BmobUser.h │ │ └── ShareSDK3 │ │ ├── ShareSDK │ │ ├── ISSDKAuthView.h │ │ ├── NSMutableDictionary+SSDKInit.h │ │ ├── NSMutableDictionary+SSDKShare.h │ │ ├── SSDKAuthView.h │ │ ├── SSDKAuthViewStyle.h │ │ ├── SSDKContentEntity.h │ │ ├── SSDKCredential.h │ │ ├── SSDKData.h │ │ ├── SSDKFriendsPaging.h │ │ ├── SSDKImage.h │ │ ├── SSDKMailViewControllerStyle.h │ │ ├── SSDKPlatform.h │ │ ├── SSDKSMSViewControllerStyle.h │ │ ├── SSDKTypeDefine.h │ │ ├── SSDKUser.h │ │ ├── SSDKUserQueryConditional.h │ │ ├── ShareSDK+Base.h │ │ └── ShareSDK.h │ │ ├── ShareSDKConnector │ │ └── ShareSDKConnector.h │ │ ├── ShareSDKExtension │ │ ├── SSEBaseUser.h │ │ ├── SSEShareHelper.h │ │ ├── SSEThirdPartyLoginHelper.h │ │ └── ShareSDK+Extension.h │ │ ├── ShareSDKUI │ │ ├── SSUIEditorViewStyle.h │ │ ├── SSUIShareActionSheetController.h │ │ ├── SSUIShareActionSheetCustomItem.h │ │ ├── SSUIShareActionSheetItem.h │ │ ├── SSUIShareActionSheetStyle.h │ │ ├── SSUIShareContentEditorViewController.h │ │ ├── SSUITypeDef.h │ │ ├── ShareSDK+SSUI.h │ │ └── ShareSDKUI.h │ │ ├── TencentOpenAPI │ │ ├── QQApiInterface.h │ │ ├── QQApiInterfaceObject.h │ │ ├── TencentApiInterface.h │ │ ├── TencentMessageObject.h │ │ ├── TencentOAuth.h │ │ ├── TencentOAuthObject.h │ │ ├── WeiBoAPI.h │ │ └── sdkdef.h │ │ ├── WBHttpRequest+WeiboGame.h │ │ ├── WBHttpRequest+WeiboShare.h │ │ ├── WBHttpRequest+WeiboToken.h │ │ ├── WBHttpRequest+WeiboUser.h │ │ ├── WBHttpRequest.h │ │ ├── WBSDKBasicButton.h │ │ ├── WBSDKCommentButton.h │ │ ├── WBSDKRelationshipButton.h │ │ ├── WXApi.h │ │ ├── WXApiObject.h │ │ ├── WechatAuthSDK.h │ │ ├── WeiboSDK+Statistics.h │ │ ├── WeiboSDK.h │ │ └── WeiboUser.h ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj ├── ShareSDK3 │ ├── LICENSE │ ├── README.md │ ├── libraries │ │ ├── ShareSDK.bundle │ │ │ ├── Base.lproj │ │ │ │ └── ShareSDK.strings │ │ │ ├── ScriptCore │ │ │ │ ├── NativeExt.js │ │ │ │ ├── ShareSDK.js │ │ │ │ └── platforms │ │ │ │ │ ├── AliPaySocial.js │ │ │ │ │ ├── Copy.js │ │ │ │ │ ├── DouBan.js │ │ │ │ │ ├── Dropbox.js │ │ │ │ │ ├── Evernote.js │ │ │ │ │ ├── Facebook.js │ │ │ │ │ ├── Flickr.js │ │ │ │ │ ├── GooglePlus.js │ │ │ │ │ ├── Instagram.js │ │ │ │ │ ├── Instapaper.js │ │ │ │ │ ├── KaKao.js │ │ │ │ │ ├── KaiXin.js │ │ │ │ │ ├── Line.js │ │ │ │ │ ├── LinkedIn.js │ │ │ │ │ ├── Mail.js │ │ │ │ │ ├── MingDao.js │ │ │ │ │ ├── Pinterest.js │ │ │ │ │ ├── Pocket.js │ │ │ │ │ ├── Print.js │ │ │ │ │ ├── QQ.js │ │ │ │ │ ├── RenRen.js │ │ │ │ │ ├── SMS.js │ │ │ │ │ ├── SinaWeibo.js │ │ │ │ │ ├── TencentWeibo.js │ │ │ │ │ ├── Tumblr.js │ │ │ │ │ ├── Twitter.js │ │ │ │ │ ├── VKontakte.js │ │ │ │ │ ├── WeChat.js │ │ │ │ │ ├── WhatsApp.js │ │ │ │ │ ├── YiXin.js │ │ │ │ │ └── YouDaoNote.js │ │ │ ├── en.lproj │ │ │ │ └── ShareSDK.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── ShareSDK.strings │ │ ├── ShareSDK.framework │ │ │ ├── Headers │ │ │ │ ├── ISSDKAuthView.h │ │ │ │ ├── NSMutableDictionary+SSDKInit.h │ │ │ │ ├── NSMutableDictionary+SSDKShare.h │ │ │ │ ├── SSDKAuthView.h │ │ │ │ ├── SSDKAuthViewStyle.h │ │ │ │ ├── SSDKContentEntity.h │ │ │ │ ├── SSDKCredential.h │ │ │ │ ├── SSDKData.h │ │ │ │ ├── SSDKFriendsPaging.h │ │ │ │ ├── SSDKImage.h │ │ │ │ ├── SSDKMailViewControllerStyle.h │ │ │ │ ├── SSDKPlatform.h │ │ │ │ ├── SSDKSMSViewControllerStyle.h │ │ │ │ ├── SSDKTypeDefine.h │ │ │ │ ├── SSDKUser.h │ │ │ │ ├── SSDKUserQueryConditional.h │ │ │ │ ├── ShareSDK+Base.h │ │ │ │ └── ShareSDK.h │ │ │ ├── Info.plist │ │ │ └── ShareSDK │ │ ├── ShareSDKConnector.framework │ │ │ ├── Headers │ │ │ │ └── ShareSDKConnector.h │ │ │ ├── Info.plist │ │ │ └── ShareSDKConnector │ │ ├── ShareSDKExtension.framework │ │ │ ├── Headers │ │ │ │ ├── SSEBaseUser.h │ │ │ │ ├── SSEShareHelper.h │ │ │ │ ├── SSEThirdPartyLoginHelper.h │ │ │ │ └── ShareSDK+Extension.h │ │ │ ├── Info.plist │ │ │ └── ShareSDKExtension │ │ ├── ShareSDKUI.bundle │ │ │ ├── Base.lproj │ │ │ │ └── ShareSDKUI_Localizable.strings │ │ │ ├── ContentEditorImg │ │ │ │ └── line@2x.gif │ │ │ ├── Icon │ │ │ │ ├── sns_icon_1.png │ │ │ │ ├── sns_icon_10.png │ │ │ │ ├── sns_icon_10@2x.png │ │ │ │ ├── sns_icon_11.png │ │ │ │ ├── sns_icon_11@2x.png │ │ │ │ ├── sns_icon_12.png │ │ │ │ ├── sns_icon_12@2x.png │ │ │ │ ├── sns_icon_14.png │ │ │ │ ├── sns_icon_14@2x.png │ │ │ │ ├── sns_icon_15.png │ │ │ │ ├── sns_icon_15@2x.png │ │ │ │ ├── sns_icon_16.png │ │ │ │ ├── sns_icon_16@2x.png │ │ │ │ ├── sns_icon_17.png │ │ │ │ ├── sns_icon_17@2x.png │ │ │ │ ├── sns_icon_18.png │ │ │ │ ├── sns_icon_18@2x.png │ │ │ │ ├── sns_icon_19.png │ │ │ │ ├── sns_icon_19@2x.png │ │ │ │ ├── sns_icon_1@2x.png │ │ │ │ ├── sns_icon_2.png │ │ │ │ ├── sns_icon_20.png │ │ │ │ ├── sns_icon_20@2x.png │ │ │ │ ├── sns_icon_21.png │ │ │ │ ├── sns_icon_21@2x.png │ │ │ │ ├── sns_icon_22.png │ │ │ │ ├── sns_icon_22@2x.png │ │ │ │ ├── sns_icon_23.png │ │ │ │ ├── sns_icon_23@2x.png │ │ │ │ ├── sns_icon_24.png │ │ │ │ ├── sns_icon_24@2x.png │ │ │ │ ├── sns_icon_25.png │ │ │ │ ├── sns_icon_25@2x.png │ │ │ │ ├── sns_icon_26.png │ │ │ │ ├── sns_icon_26@2x.png │ │ │ │ ├── sns_icon_27.png │ │ │ │ ├── sns_icon_27@2x.png │ │ │ │ ├── sns_icon_2@2x.png │ │ │ │ ├── sns_icon_30.png │ │ │ │ ├── sns_icon_30@2x.png │ │ │ │ ├── sns_icon_34.png │ │ │ │ ├── sns_icon_34@2x.png │ │ │ │ ├── sns_icon_35.png │ │ │ │ ├── sns_icon_35@2x.png │ │ │ │ ├── sns_icon_36.png │ │ │ │ ├── sns_icon_36@2x.png │ │ │ │ ├── sns_icon_37.png │ │ │ │ ├── sns_icon_37@2x.png │ │ │ │ ├── sns_icon_38.png │ │ │ │ ├── sns_icon_38@2x.png │ │ │ │ ├── sns_icon_39.png │ │ │ │ ├── sns_icon_39@2x.png │ │ │ │ ├── sns_icon_40.png │ │ │ │ ├── sns_icon_40@2x.png │ │ │ │ ├── sns_icon_41.png │ │ │ │ ├── sns_icon_41@2x.png │ │ │ │ ├── sns_icon_42.png │ │ │ │ ├── sns_icon_42@2x.png │ │ │ │ ├── sns_icon_43.png │ │ │ │ ├── sns_icon_43@2x.png │ │ │ │ ├── sns_icon_44.png │ │ │ │ ├── sns_icon_44@2x.png │ │ │ │ ├── sns_icon_45.png │ │ │ │ ├── sns_icon_45@2x.png │ │ │ │ ├── sns_icon_5.png │ │ │ │ ├── sns_icon_50.png │ │ │ │ ├── sns_icon_50@2x.png │ │ │ │ ├── sns_icon_5@2x.png │ │ │ │ ├── sns_icon_6.png │ │ │ │ ├── sns_icon_6@2x.png │ │ │ │ ├── sns_icon_7.png │ │ │ │ ├── sns_icon_7@2x.png │ │ │ │ ├── sns_icon_8.png │ │ │ │ ├── sns_icon_8@2x.png │ │ │ │ ├── sns_icon_996.png │ │ │ │ └── sns_icon_996@2x.png │ │ │ ├── en.lproj │ │ │ │ └── ShareSDKUI_Localizable.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── ShareSDKUI_Localizable.strings │ │ ├── ShareSDKUI.framework │ │ │ ├── Headers │ │ │ │ ├── SSUIEditorViewStyle.h │ │ │ │ ├── SSUIShareActionSheetController.h │ │ │ │ ├── SSUIShareActionSheetCustomItem.h │ │ │ │ ├── SSUIShareActionSheetItem.h │ │ │ │ ├── SSUIShareActionSheetStyle.h │ │ │ │ ├── SSUIShareContentEditorViewController.h │ │ │ │ ├── SSUITypeDef.h │ │ │ │ ├── ShareSDK+SSUI.h │ │ │ │ └── ShareSDKUI.h │ │ │ ├── Info.plist │ │ │ └── ShareSDKUI │ │ └── extends │ │ │ ├── QQSDK │ │ │ ├── TencentOpenAPI.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── QQApiInterface.h │ │ │ │ │ ├── QQApiInterfaceObject.h │ │ │ │ │ ├── TencentApiInterface.h │ │ │ │ │ ├── TencentMessageObject.h │ │ │ │ │ ├── TencentOAuth.h │ │ │ │ │ ├── TencentOAuthObject.h │ │ │ │ │ ├── WeiBoAPI.h │ │ │ │ │ └── sdkdef.h │ │ │ │ └── TencentOpenAPI │ │ │ └── TencentOpenApi_IOS_Bundle.bundle │ │ │ │ ├── error.png │ │ │ │ ├── ios_open_sdk_2.9.3.2_iphone │ │ │ │ ├── local.html │ │ │ │ ├── qqicon.png │ │ │ │ └── success.png │ │ │ ├── SinaWeiboSDK │ │ │ ├── WBHttpRequest+WeiboGame.h │ │ │ ├── WBHttpRequest+WeiboShare.h │ │ │ ├── WBHttpRequest+WeiboToken.h │ │ │ ├── WBHttpRequest+WeiboUser.h │ │ │ ├── WBHttpRequest.h │ │ │ ├── WBSDKBasicButton.h │ │ │ ├── WBSDKCommentButton.h │ │ │ ├── WBSDKRelationshipButton.h │ │ │ ├── WeiboSDK+Statistics.h │ │ │ ├── WeiboSDK.bundle │ │ │ │ ├── images │ │ │ │ │ ├── alert_error_icon@2x.png │ │ │ │ │ ├── alert_success_icon@2x.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── close@2x.png │ │ │ │ │ ├── common_button_big_blue@2x.png │ │ │ │ │ ├── common_button_big_blue_disable@2x.png │ │ │ │ │ ├── common_button_big_blue_highlighted@2x.png │ │ │ │ │ ├── common_button_white.png │ │ │ │ │ ├── common_button_white@2x.png │ │ │ │ │ ├── common_button_white_highlighted.png │ │ │ │ │ ├── common_button_white_highlighted@2x.png │ │ │ │ │ ├── common_icon_arrow@2x.png │ │ │ │ │ ├── compose_keyboardbutton_background.png │ │ │ │ │ ├── compose_keyboardbutton_background@2x.png │ │ │ │ │ ├── compose_toolbar_background.png │ │ │ │ │ ├── compose_toolbar_background@2x.png │ │ │ │ │ ├── empty_failed.png │ │ │ │ │ ├── empty_failed@2x.png │ │ │ │ │ ├── login_background@2x.png │ │ │ │ │ ├── login_country_background@2x.png │ │ │ │ │ ├── login_country_background_highlighted@2x.png │ │ │ │ │ ├── navigationbar_background.png │ │ │ │ │ ├── navigationbar_background@2x.png │ │ │ │ │ ├── navigationbar_background_os7.png │ │ │ │ │ ├── navigationbar_background_os7@2x.png │ │ │ │ │ ├── progresshud_background@2x.png │ │ │ │ │ ├── sdk_weibo_logo.png │ │ │ │ │ ├── sdk_weibo_logo@2x.png │ │ │ │ │ ├── sdk_weibo_logo@3x.png │ │ │ │ │ ├── timeline_relationship_icon_addattention.png │ │ │ │ │ ├── timeline_relationship_icon_addattention@2x.png │ │ │ │ │ ├── timeline_relationship_icon_addattention@3x.png │ │ │ │ │ ├── timeline_relationship_icon_attention.png │ │ │ │ │ ├── timeline_relationship_icon_attention@2x.png │ │ │ │ │ ├── timeline_relationship_icon_attention@3x.png │ │ │ │ │ ├── verify_code_button@2x.png │ │ │ │ │ ├── verify_code_button@3x.png │ │ │ │ │ ├── verify_code_button_highlighted@2x.png │ │ │ │ │ └── verify_code_button_highlighted@3x.png │ │ │ │ └── others │ │ │ │ │ ├── countryList │ │ │ │ │ └── mfp.cer │ │ │ ├── WeiboSDK.h │ │ │ ├── WeiboUser.h │ │ │ └── libWeiboSDK.a │ │ │ └── WeChatSDK │ │ │ ├── WXApi.h │ │ │ ├── WXApiObject.h │ │ │ ├── WechatAuthSDK.h │ │ │ └── libWeChatSDK.a │ └── readme └── Target Support Files │ ├── AFNetworking │ ├── AFNetworking-dummy.m │ ├── AFNetworking-prefix.pch │ └── AFNetworking.xcconfig │ └── Pods │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-frameworks.sh │ ├── Pods-resources.sh │ ├── Pods.debug.xcconfig │ └── Pods.release.xcconfig ├── README.md └── Screenshots ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.xcscheme 3 | 4 | # Xcode 5 | # 6 | build/ 7 | *.pbxuser 8 | !default.pbxuser 9 | *.mode1v3 10 | !default.mode1v3 11 | *.mode2v3 12 | !default.mode2v3 13 | *.perspectivev3 14 | !default.perspectivev3 15 | xcuserdata 16 | *.xccheckout 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | *.xcuserstate 22 | 23 | # CocoaPods 24 | # 25 | # We recommend against adding the Pods directory to your .gitignore. However 26 | # you should judge for yourself, the pros and cons are mentioned at: 27 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 28 | # 29 | #Pods/ 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 chenyufeng 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /Oncenote WatchKit App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "24x24", 5 | "idiom" : "watch", 6 | "scale" : "2x", 7 | "role" : "notificationCenter", 8 | "subtype" : "38mm" 9 | }, 10 | { 11 | "size" : "27.5x27.5", 12 | "idiom" : "watch", 13 | "scale" : "2x", 14 | "role" : "notificationCenter", 15 | "subtype" : "42mm" 16 | }, 17 | { 18 | "size" : "29x29", 19 | "idiom" : "watch", 20 | "role" : "companionSettings", 21 | "scale" : "2x" 22 | }, 23 | { 24 | "size" : "29x29", 25 | "idiom" : "watch", 26 | "role" : "companionSettings", 27 | "scale" : "3x" 28 | }, 29 | { 30 | "size" : "40x40", 31 | "idiom" : "watch", 32 | "scale" : "2x", 33 | "role" : "appLauncher", 34 | "subtype" : "38mm" 35 | }, 36 | { 37 | "size" : "44x44", 38 | "idiom" : "watch", 39 | "scale" : "2x", 40 | "role" : "longLook", 41 | "subtype" : "42mm" 42 | }, 43 | { 44 | "size" : "86x86", 45 | "idiom" : "watch", 46 | "scale" : "2x", 47 | "role" : "quickLook", 48 | "subtype" : "38mm" 49 | }, 50 | { 51 | "size" : "98x98", 52 | "idiom" : "watch", 53 | "scale" : "2x", 54 | "role" : "quickLook", 55 | "subtype" : "42mm" 56 | } 57 | ], 58 | "info" : { 59 | "version" : 1, 60 | "author" : "xcode" 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /Oncenote WatchKit App/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | Oncenote WatchKit App 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | UISupportedInterfaceOrientations 26 | 27 | UIInterfaceOrientationPortrait 28 | UIInterfaceOrientationPortraitUpsideDown 29 | 30 | WKCompanionAppBundleIdentifier 31 | com.chenyufengweb.Oncenote 32 | WKWatchKitApp 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Oncenote WatchKit Extension/Assets.xcassets/README__ignoredByTemplate__: -------------------------------------------------------------------------------- 1 | Did you know that git does not support storing empty directories? 2 | -------------------------------------------------------------------------------- /Oncenote WatchKit Extension/ExtensionDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // ExtensionDelegate.h 3 | // Oncenote WatchKit Extension 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ExtensionDelegate : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote WatchKit Extension/ExtensionDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // ExtensionDelegate.m 3 | // Oncenote WatchKit Extension 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import "ExtensionDelegate.h" 10 | 11 | @implementation ExtensionDelegate 12 | 13 | - (void)applicationDidFinishLaunching { 14 | // Perform any final initialization of your application. 15 | } 16 | 17 | - (void)applicationDidBecomeActive { 18 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 19 | } 20 | 21 | - (void)applicationWillResignActive { 22 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 23 | // Use this method to pause ongoing tasks, disable timers, etc. 24 | } 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /Oncenote WatchKit Extension/GlanceController.h: -------------------------------------------------------------------------------- 1 | // 2 | // GlanceController.h 3 | // Oncenote WatchKit Extension 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface GlanceController : WKInterfaceController 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Oncenote WatchKit Extension/GlanceController.m: -------------------------------------------------------------------------------- 1 | // 2 | // GlanceController.m 3 | // Oncenote WatchKit Extension 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import "GlanceController.h" 10 | 11 | 12 | @interface GlanceController() 13 | 14 | @end 15 | 16 | 17 | @implementation GlanceController 18 | 19 | - (void)awakeWithContext:(id)context { 20 | [super awakeWithContext:context]; 21 | 22 | // Configure interface objects here. 23 | } 24 | 25 | - (void)willActivate { 26 | // This method is called when watch view controller is about to be visible to user 27 | [super willActivate]; 28 | } 29 | 30 | - (void)didDeactivate { 31 | // This method is called when watch view controller is no longer visible 32 | [super didDeactivate]; 33 | } 34 | 35 | @end 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Oncenote WatchKit Extension/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | Oncenote WatchKit Extension 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | XPC! 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | NSExtension 26 | 27 | NSExtensionAttributes 28 | 29 | WKAppBundleIdentifier 30 | com.chenyufengweb.Oncenote.watchkitapp 31 | 32 | NSExtensionPointIdentifier 33 | com.apple.watchkit 34 | 35 | RemoteInterfacePrincipalClass 36 | InterfaceController 37 | WKExtensionDelegateClassName 38 | ExtensionDelegate 39 | 40 | 41 | -------------------------------------------------------------------------------- /Oncenote WatchKit Extension/InterfaceController.h: -------------------------------------------------------------------------------- 1 | // 2 | // InterfaceController.h 3 | // Oncenote WatchKit Extension 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface InterfaceController : WKInterfaceController 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Oncenote WatchKit Extension/InterfaceController.m: -------------------------------------------------------------------------------- 1 | // 2 | // InterfaceController.m 3 | // Oncenote WatchKit Extension 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import "InterfaceController.h" 10 | 11 | 12 | @interface InterfaceController() 13 | 14 | @end 15 | 16 | 17 | @implementation InterfaceController 18 | 19 | - (void)awakeWithContext:(id)context { 20 | [super awakeWithContext:context]; 21 | 22 | // Configure interface objects here. 23 | } 24 | 25 | - (void)willActivate { 26 | // This method is called when watch view controller is about to be visible to user 27 | [super willActivate]; 28 | } 29 | 30 | - (void)didDeactivate { 31 | // This method is called when watch view controller is no longer visible 32 | [super didDeactivate]; 33 | } 34 | 35 | @end 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Oncenote WatchKit Extension/NotificationController.h: -------------------------------------------------------------------------------- 1 | // 2 | // NotificationController.h 3 | // Oncenote WatchKit Extension 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface NotificationController : WKUserNotificationInterfaceController 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Oncenote WatchKit Extension/PushNotificationPayload.apns: -------------------------------------------------------------------------------- 1 | { 2 | "aps": { 3 | "alert": { 4 | "body": "Test message", 5 | "title": "Optional title" 6 | }, 7 | "category": "myCategory" 8 | }, 9 | 10 | "WatchKit Simulator Actions": [ 11 | { 12 | "title": "First Button", 13 | "identifier": "firstButtonAction" 14 | } 15 | ], 16 | 17 | "customKey": "Use this file to define a testing payload for your notifications. The aps dictionary specifies the category, alert text and title. The WatchKit Simulator Actions array can provide info for one or more action buttons in addition to the standard Dismiss button. Any other top level keys are custom payload. If you have multiple such JSON files in your project, you'll be able to select them when choosing to debug the notification interface of your Watch App." 18 | } 19 | -------------------------------------------------------------------------------- /Oncenote.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Oncenote.xcodeproj/xcuserdata/chenyufeng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Glance - Oncenote WatchKit App.xcscheme 8 | 9 | orderHint 10 | 3 11 | 12 | Notification - Oncenote WatchKit App.xcscheme 13 | 14 | orderHint 15 | 2 16 | 17 | Oncenote WatchKit App.xcscheme 18 | 19 | orderHint 20 | 1 21 | 22 | Oncenote.xcscheme 23 | 24 | orderHint 25 | 0 26 | 27 | 28 | SuppressBuildableAutocreation 29 | 30 | 717902E41BF48FC100428756 31 | 32 | primary 33 | 34 | 35 | 717902FD1BF48FC200428756 36 | 37 | primary 38 | 39 | 40 | 717903081BF48FC200428756 41 | 42 | primary 43 | 44 | 45 | 717903111BF48FC200428756 46 | 47 | primary 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /Oncenote.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Oncenote/AboutAppViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AboutAppViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/17. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AboutAppViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote/AboutAppViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // AboutAppViewController.m 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/17. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import "AboutAppViewController.h" 10 | #import "AllUtils.h" 11 | 12 | @interface AboutAppViewController () 13 | 14 | @end 15 | 16 | @implementation AboutAppViewController 17 | 18 | - (void)viewDidLoad { 19 | 20 | [super viewDidLoad]; 21 | } 22 | 23 | - (IBAction)naviBackButtonPressed:(id)sender { 24 | 25 | [AllUtils jumpToViewController:@"SettingViewController" contextViewController:self handler:nil]; 26 | } 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Oncenote/AddNoteViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AddNoteViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/13. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AddNoteViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote/AllNoteDetailViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AllNoteDetailViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/15. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AllNoteDetailViewController : UIViewController 12 | 13 | @property(nonatomic,copy) NSString *noteId; 14 | @property(nonatomic,copy) NSString *noteTitle; 15 | @property(nonatomic,copy) NSString *noteText; 16 | @property(nonatomic,strong) NSIndexPath *indexPath; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Oncenote/AllNotesViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AllNotesViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/14. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AllNotesViewController : UIViewController 12 | 13 | @property(nonatomic,copy) NSString* tempTitle; 14 | @property(nonatomic,copy) NSString* tempText; 15 | @property(nonatomic,strong) NSIndexPath* tempIndexPath; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Oncenote/AllUtils.h: -------------------------------------------------------------------------------- 1 | // 2 | // AllUtils.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/15. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface AllUtils : NSObject 13 | 14 | + (NSString *)getDateFromString:(NSString*)date; 15 | 16 | + (UIAlertController*)showPromptDialog:(NSString*)title andMessage:(NSString*)message OKButton:(NSString*)OKButtonTitle OKButtonAction:(void (^)(UIAlertAction *action))OKButtonHandler cancelButton:(NSString*)cancelButtonTitle cancelButtonAction:(void (^)(UIAlertAction *action))cancelButtonHandler contextViewController:(UIViewController*)contextViewController; 17 | 18 | + (void)jumpToViewController:(NSString*)viewControllerIdentifier contextViewController:(UIViewController*)contextViewController handler:(void (^)(void))handler; 19 | @end 20 | -------------------------------------------------------------------------------- /Oncenote/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | @property (strong,nonatomic) NSString *GLOBAL_USERID;//全局的objectID;当前的用户ID; 15 | @property (strong,nonatomic) NSString *GLOBAL_USERNAME;//全局的用户名,也就是手机号; 16 | @property (strong,nonatomic) NSString *GLOBAL_NICKNAME;//全局的昵称; 17 | @property (strong,nonatomic) NSString *GLOBAL_PASSWORD;//全局的密码; 18 | 19 | //尝试全局使用一个笔记数组; 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-29@2x-1.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-40@2x-1.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/LoginAppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LoginAppIcon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/LoginAppIcon.imageset/LoginAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/LoginAppIcon.imageset/LoginAppIcon.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/add_button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "add_button.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/add_button.imageset/add_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/add_button.imageset/add_button.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/back_button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "back_button.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/back_button.imageset/back_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/back_button.imageset/back_button.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/detail_search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "detail_search.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/detail_search.imageset/detail_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/detail_search.imageset/detail_search.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/guidepage0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "guidepage01.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/guidepage0.imageset/guidepage01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/guidepage0.imageset/guidepage01.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/guidepage1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "guidepage02.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/guidepage1.imageset/guidepage02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/guidepage1.imageset/guidepage02.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/guidepage2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "guidepage03.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/guidepage2.imageset/guidepage03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/guidepage2.imageset/guidepage03.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/guidepage3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "guidepage04.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/guidepage3.imageset/guidepage04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/guidepage3.imageset/guidepage04.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/iTunesArtwork.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "data" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "iTunesArtwork" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/iTunesArtwork.dataset/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/iTunesArtwork.dataset/iTunesArtwork -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/iTunesArtwork@2x.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "data" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "iTunesArtwork@2x" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/iTunesArtwork@2x.dataset/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/iTunesArtwork@2x.dataset/iTunesArtwork@2x -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-29.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon-29.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon-29@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon-29@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-29.imageset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-29.imageset/icon-29.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-29.imageset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-29.imageset/icon-29@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-29.imageset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-29.imageset/icon-29@3x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-40.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon-40.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon-40@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon-40@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-40.imageset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-40.imageset/icon-40.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-40.imageset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-40.imageset/icon-40@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-40.imageset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-40.imageset/icon-40@3x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-57.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon-57.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon-57@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon-57@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-57.imageset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-57.imageset/icon-57.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-57.imageset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-57.imageset/icon-57@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-57.imageset/icon-57@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-57.imageset/icon-57@3x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-60.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon-60.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon-60@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon-60@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-60.imageset/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-60.imageset/icon-60.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-60.imageset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-60.imageset/icon-60@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/icon-60.imageset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/icon-60.imageset/icon-60@3x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/main_alert.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "main_alert@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/main_alert.imageset/main_alert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/main_alert.imageset/main_alert@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/main_chat.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "main_chat@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/main_chat.imageset/main_chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/main_chat.imageset/main_chat@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/main_list.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "main_list@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/main_list.imageset/main_list@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/main_list.imageset/main_list@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/main_photo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "main_photo@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/main_photo.imageset/main_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/main_photo.imageset/main_photo@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/main_text.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "main_text@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/main_text.imageset/main_text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/main_text.imageset/main_text@2x.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/navi_refresh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "navi_refresh@2x副本.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/navi_refresh.imageset/navi_refresh@2x副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/navi_refresh.imageset/navi_refresh@2x副本.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/navi_search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "navi_search@2x副本副本.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/navi_search.imageset/navi_search@2x副本副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/navi_search.imageset/navi_search@2x副本副本.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/navi_setting.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "navi_setting@2x副本副本.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/navi_setting.imageset/navi_setting@2x副本副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/navi_setting.imageset/navi_setting@2x副本副本.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/share_button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share_button.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/share_button.imageset/share_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/share_button.imageset/share_button.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/tableview_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "QQ20151113-1@2x副本.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/tableview_arrow.imageset/QQ20151113-1@2x副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/tableview_arrow.imageset/QQ20151113-1@2x副本.png -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/tableview_note.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tableview_note@2x副本.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Oncenote/Assets.xcassets/tableview_note.imageset/tableview_note@2x副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/Assets.xcassets/tableview_note.imageset/tableview_note@2x副本.png -------------------------------------------------------------------------------- /Oncenote/BmobOperation.h: -------------------------------------------------------------------------------- 1 | // 2 | // BmobOperation.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/13. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BmobOperation : NSObject 12 | 13 | + (void)addNoteToNoteTable:(NSString*)tableName userId:(NSString*)userId username:(NSString*)username noteTitle:(NSString*)noteTitle noteText:(NSString*)noteText todo:(void(^)(BOOL isSuccessful, NSError *error)) todo; 14 | 15 | + (void)deleteNoteFromDatabase:(NSString*)tableName noteId:(NSString*)noteId; 16 | 17 | //+ (void)updateNicknameToUserTable:(NSString*)tableName userId:(NSString*)userId nickname:(NSString*)nickname; 18 | @end 19 | -------------------------------------------------------------------------------- /Oncenote/Constant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Constant.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/13. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #define USER_TABLE @"User" 12 | #define NOTE_TABLE @"Note" 13 | 14 | @interface Constant : NSObject 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Oncenote/Constant.m: -------------------------------------------------------------------------------- 1 | 2 | 3 | // 4 | // Constant.m 5 | // Oncenote 6 | // 7 | // Created by chenyufeng on 15/11/13. 8 | // Copyright © 2015年 chenyufengweb. All rights reserved. 9 | // 10 | 11 | #import "Constant.h" 12 | 13 | @implementation Constant 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Oncenote/ForgetPasswordViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ForgetPasswordViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/18. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ForgetPasswordViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote/GuidePageViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // GuidePageViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/22. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface GuidePageViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote/LaunchScreenViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LaunchScreenViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/15. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LaunchScreenViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote/LoginViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LoginViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/13. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LoginViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/IMOBFPlugin.h: -------------------------------------------------------------------------------- 1 | // 2 | // IMOBFPlugin.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 15/6/2. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 插件协议 13 | */ 14 | @protocol IMOBFPlugin 15 | 16 | @required 17 | 18 | /** 19 | * 插件加载时调用 20 | * 21 | * @param key 插件标识 22 | */ 23 | - (void)load:(NSString *)key; 24 | 25 | /** 26 | * 插件卸载时调用 27 | */ 28 | - (void)unload; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFApplication.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFApplicationUtils.h 3 | // MOBFoundation 4 | // 5 | // Created by vimfung on 15-1-20. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 应用工具类 13 | */ 14 | @interface MOBFApplication : NSObject 15 | 16 | /** 17 | * 获取应用名称 18 | * 19 | * @return 应用名称 20 | */ 21 | + (NSString *)name; 22 | 23 | /** 24 | * 获取应用包名 25 | * 26 | * @return 包名 27 | */ 28 | + (NSString *)bundleId; 29 | 30 | /** 31 | * 获取应用编译版本 32 | * 33 | * @return 编译版本 34 | */ 35 | + (NSString *)buildVersion; 36 | 37 | /** 38 | * 获取应用版本号 39 | * 40 | * @return 应用版本号 41 | */ 42 | + (NSString *)shortVersion; 43 | 44 | /** 45 | * 获取应用版本号 46 | * 47 | * @return 版本号 48 | */ 49 | + (NSString *)version __deprecated_msg("use [buildVersion] method instead"); 50 | 51 | /** 52 | * 检测是否启用ATS功能 53 | */ 54 | + (BOOL)enabledATS; 55 | 56 | @end 57 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFColor.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFColorUtils.h 3 | // MOBFoundation 4 | // 5 | // Created by vimfung on 15-1-19. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | /** 13 | * 颜色工具类 14 | */ 15 | @interface MOBFColor : NSObject 16 | 17 | /** 18 | * 获取颜色对象 19 | * 20 | * @param rgb RGB颜色值 21 | * 22 | * @return 颜色对象 23 | */ 24 | + (UIColor *)colorWithRGB:(NSUInteger)rgb; 25 | 26 | /** 27 | * 获取颜色对象 28 | * 29 | * @param argb ARGB颜色值 30 | * 31 | * @return 颜色对象 32 | */ 33 | + (UIColor *)colorWithARGB:(NSUInteger)argb; 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFDebug.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFDebug.h 3 | // MOBFoundation 4 | // 5 | // Created by 冯 鸿杰 on 15/2/4. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | typedef NS_ENUM(NSUInteger, MOBFDebugLevel) 12 | { 13 | MOBFDebugLevelApp = 0x0001, 14 | }; 15 | 16 | /** 17 | * 调试工具类 18 | */ 19 | @interface MOBFDebug : NSObject 20 | 21 | /** 22 | * 启用调试模式 23 | * 24 | * @param enabled YES 启用调试,NO 禁用调试模式 25 | */ 26 | + (void)enabledDebug:(BOOL)enabled; 27 | 28 | /** 29 | * 启动调试模式 30 | * 31 | * @param enabled YES 启动调试,NO 禁用调试模式 32 | * @param level 调试级别 33 | */ 34 | + (void)enabledDebug:(BOOL)enabled 35 | level:(MOBFDebugLevel)level; 36 | 37 | /** 38 | * 输出调试日志 39 | * 40 | * @param format 日志格式 41 | * @param ... 日志参数 42 | */ 43 | + (void)log:(NSString *)format,...NS_FORMAT_FUNCTION(1,2); 44 | 45 | /** 46 | * 输出调试日志 47 | * 48 | * @param format 日志格式 49 | */ 50 | + (void)sdkLog:(NSString *)format,...NS_FORMAT_FUNCTION(1,2); 51 | 52 | @end 53 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFImageService.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFImageService.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 15/6/8. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | #import "MOBFImageServiceTypeDef.h" 12 | 13 | /** 14 | * 图片服务 15 | */ 16 | @interface MOBFImageService : NSObject 17 | 18 | /** 19 | * 获取共享图片服务实例 20 | * 21 | * @return 图片服务实例 22 | */ 23 | + (instancetype)sharedInstance; 24 | 25 | /** 26 | * 获取图片数据 27 | * 28 | * @param url 图片路径 29 | * @param observer 观察者 30 | * @param loadingHandler 加载中事件 31 | * @param resultHandler 图片返回事件 32 | * @param failHandler 图片加载失败事件 33 | */ 34 | - (void)getImageWithURL:(NSURL *)url 35 | observer:(id)observer 36 | onLoading:(MOBFImageServiceLoadingHandler)loadingHandler 37 | onResult:(MOBFImageServiceResultHandler)resultHandler 38 | onFail:(MOBFImageServiceFailHandler)failHandler; 39 | 40 | 41 | /** 42 | * 移除某个图片的观察者监听 43 | * 44 | * @param observer 观察者 45 | * @param url 图片路径 46 | */ 47 | - (void)removeObserver:(id)observer forURL:(NSURL *)url; 48 | 49 | /** 50 | * 移除指定观察者的所有监听 51 | * 52 | * @param observer 观察者 53 | */ 54 | - (void)removeObserver:(id)observer; 55 | 56 | @end 57 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFImageServiceTypeDef.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFImageServiceTypeDef.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 15/6/8. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #ifndef MOBFoundation_MOBFImageServiceTypeDef_h 10 | #define MOBFoundation_MOBFImageServiceTypeDef_h 11 | 12 | /** 13 | * 图片加载返回事件 14 | * 15 | * @param imageData 图片数据 16 | */ 17 | typedef void (^MOBFImageServiceResultHandler) (NSData *imageData); 18 | 19 | /** 20 | * 图片加载失败事件 21 | * 22 | * @param error 错误信息 23 | */ 24 | typedef void (^MOBFImageServiceFailHandler) (NSError *error); 25 | 26 | /** 27 | * 图片加载中事件 28 | */ 29 | typedef void (^MOBFImageServiceLoadingHandler) (); 30 | 31 | #endif 32 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFJSContext.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFJSContext.h 3 | // MOBFoundation 4 | // 5 | // Created by 冯 鸿杰 on 15/2/27. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MOBFJSTypeDefine.h" 11 | 12 | /** 13 | * JavaScript上下文环境 14 | */ 15 | @interface MOBFJSContext : NSObject 16 | 17 | /** 18 | * 获取默认的上下文环境 19 | * 20 | * @return JS上下文环境 21 | */ 22 | + (instancetype)defaultContext; 23 | 24 | /** 25 | * 注册方法 26 | * 27 | * @param name 方法名称 28 | * @param block 方法执行 29 | */ 30 | - (void)registerJSMethod:(NSString *)name block:(MOBFJSMethodIMP)block; 31 | 32 | /** 33 | * 调用方法 34 | * 35 | * @param name 方法名称 36 | * @param arguments 参数 37 | * 38 | * @return 返回值 39 | */ 40 | - (NSString *)callJSMethod:(NSString *)name arguments:(NSArray *)arguments; 41 | 42 | /** 43 | * 加载插件 44 | * 45 | * @param path 插件脚本文件路径 46 | * @param name 插件名称 47 | */ 48 | - (void)loadPluginWithPath:(NSString *)path forName:(NSString *)name; 49 | 50 | /** 51 | * 加载插件 52 | * 53 | * @param content 插件脚本内容 54 | * @param name 插件名称 55 | */ 56 | - (void)loadPlugin:(NSString *)content forName:(NSString *)name; 57 | 58 | /** 59 | * 执行脚本 60 | * 61 | * @param script 脚本 62 | */ 63 | - (void)runScript:(NSString *)script; 64 | 65 | /** 66 | * 调试脚本 67 | * 68 | * @param script 脚本 69 | */ 70 | - (void)debug:(NSString *)script; 71 | 72 | @end 73 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFJSTypeDefine.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFJSTypeDefine.h 3 | // MOBFoundation 4 | // 5 | // Created by 冯 鸿杰 on 15/2/27. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #ifndef MOBFoundation_MOBFJSTypeDefine_h 10 | #define MOBFoundation_MOBFJSTypeDefine_h 11 | 12 | /** 13 | * JS方法实现 14 | * 15 | * @param params 传入参数 16 | */ 17 | typedef void(^MOBFJSMethodIMP) (NSArray *arguments); 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFJson.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFJson.h 3 | // MOBFoundation 4 | // 5 | // Created by vimfung on 15-1-20. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * JSON工具类 13 | */ 14 | @interface MOBFJson : NSObject 15 | 16 | /** 17 | * 通过JSON字符串反序列化为对象 18 | * 19 | * @param jsonString JSON字符串 20 | * 21 | * @return 对象 22 | */ 23 | + (id)objectFromJSONString:(NSString *)jsonString; 24 | 25 | /** 26 | * 通过JSON数据反序列化为对象 27 | * 28 | * @param jsonData JSON数据 29 | * 30 | * @return 对象 31 | */ 32 | + (id)objectFromJSONData:(NSData *)jsonData; 33 | 34 | /** 35 | * 通过对象序列化为JSON字符串 36 | * 37 | * @param object 对象 38 | * 39 | * @return JSON字符串 40 | */ 41 | + (NSString *)jsonStringFromObject:(id)object; 42 | 43 | /** 44 | * 通过对象序列化为JSON字符串 45 | * 46 | * @param object 对象 47 | * @param block 未解析类型回调 48 | * 49 | * @return JSON字符串 50 | */ 51 | + (NSString *)jsonStringFromObject:(id)object serializeUnsupportedClassesUsingBlock:(id(^)(id object))block; 52 | 53 | /** 54 | * 通过对象序列化为JSON数据 55 | * 56 | * @param object 对象 57 | * 58 | * @return JSON数据 59 | */ 60 | + (NSData *)jsonDataFromObject:(id)object; 61 | 62 | /** 63 | * 通过对象序列化为JSON数据 64 | * 65 | * @param object 对象 66 | * @param block 未解析类型回调 67 | * 68 | * @return JSON数据 69 | */ 70 | + (NSData *)jsonDataFromObject:(id)object serializeUnsupportedClassesUsingBlock:(id(^)(id object))block; 71 | 72 | @end 73 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFNotificationCenter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFCore.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 15/8/31. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 应用程序崩溃通知 13 | */ 14 | extern NSString *const MOBFApplicationCrashNotif; 15 | 16 | /** 17 | * 核心对象 18 | */ 19 | @interface MOBFNotificationCenter : NSObject 20 | 21 | /** 22 | * 添加观察者 23 | * 24 | * @param observer 观察者对象 25 | * @param selector 处理器方法 26 | * @param name 通知名称 27 | * @param object 对象信息 28 | */ 29 | + (void)addObserver:(NSObject *)observer 30 | selector:(SEL)selector 31 | name:(NSString *)name 32 | object:(id)object; 33 | 34 | /** 35 | * 移除观察者 36 | * 37 | * @param observer 观察者对象 38 | */ 39 | + (void)removeObserver:(NSObject *)observer; 40 | 41 | /** 42 | * 移除观察者 43 | * 44 | * @param observer 观察者对象 45 | * @param name 通知名称 46 | * @param object 对象信息 47 | */ 48 | + (void)removeObserver:(NSObject *)observer 49 | name:(NSString *)name 50 | object:(id)object; 51 | 52 | @end 53 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFNumber.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFNumberUtils.h 3 | // MOBFoundation 4 | // 5 | // Created by vimfung on 15-1-20. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 数值工具类 13 | */ 14 | @interface MOBFNumber : NSObject 15 | 16 | /** 17 | * 获取随机整型值 18 | * 19 | * @param max 最大随机数 20 | * 21 | * @return 随机整数 22 | */ 23 | + (NSInteger)randomInteger:(NSInteger)max; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFPluginManager.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFPluginManager.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 15/6/2. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "IMOBFPlugin.h" 11 | 12 | /** 13 | * 插件创建事件处理 14 | * 15 | * @return 插件对象 16 | */ 17 | typedef id(^MOBFPluginConstructHandler) (); 18 | 19 | /** 20 | * 插件管理器 21 | */ 22 | @interface MOBFPluginManager : NSObject 23 | 24 | /** 25 | * 获取默认的插件管理器 26 | * 27 | * @return 插件管理器 28 | */ 29 | + (instancetype) defaultManager; 30 | 31 | /** 32 | * 注册插件 33 | * 34 | * @param pluginConstructHandler 插件构造事件处理器 35 | * @param key 插件标识 36 | * 37 | * @return YES 表示注册成功,NO 表示注册失败,有可能已存在此插件 38 | */ 39 | - (BOOL)registerPlugin:(MOBFPluginConstructHandler)pluginConstructHandler forKey:(NSString *)key; 40 | 41 | /** 42 | * 判断是否已经注册插件 43 | * 44 | * @param key 插件标识 45 | * 46 | * @return YES 表示已经注册, NO 表示尚未注册 47 | */ 48 | - (BOOL)isRegisterPluginForKey:(NSString *)key; 49 | 50 | /** 51 | * 获取插件对象 52 | * 53 | * @param key 插件标识 54 | * 55 | * @return 插件对象,nil 表示该标志的插件不存在 56 | */ 57 | - (id)pluginForKey:(NSString *)key; 58 | 59 | /** 60 | * 卸载插件 61 | * 62 | * @param key 插件标识 63 | */ 64 | - (void)unloadPluginForKey:(NSString *)key; 65 | 66 | @end 67 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFRSAHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFRSAHelper.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 15/7/29. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MOBFRSAKey.h" 11 | 12 | 13 | /** 14 | * RSA加解密助手 15 | */ 16 | @interface MOBFRSAHelper : NSObject 17 | 18 | /** 19 | * 密钥信息 20 | */ 21 | @property (nonatomic, readonly) MOBFRSAKey *key; 22 | 23 | /** 24 | * 初始化RSA加密器 25 | * 26 | * @param keySize 密钥长度 27 | * 28 | * @return 加密器对象 29 | */ 30 | - (instancetype)initWithKeySize:(int)keySize; 31 | 32 | /** 33 | * 初始化RSA加密器 34 | * 35 | * @param keySize 密钥长度 36 | * @param publicKey 公钥 37 | * @param privateKey 私钥 38 | * @param modulus 模数 39 | * 40 | * @return 加密器对象 41 | */ 42 | - (instancetype)initWithKeySize:(int)keySize 43 | publicKey:(NSString *)publicKey 44 | privateKey:(NSString *)privateKey 45 | modulus:(NSString *)modulus; 46 | 47 | /** 48 | * 加密数据 49 | * 50 | * @param data 数据 51 | * 52 | * @return 加密后数据 53 | */ 54 | - (NSData *)encryptWithData:(NSData *)data; 55 | 56 | /** 57 | * 解密数据 58 | * 59 | * @param data 加密后数据 60 | * 61 | * @return 解密后数据 62 | */ 63 | - (NSData *)decryptWithData:(NSData *)data; 64 | 65 | @end 66 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFRSAKey.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFRSAKey.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 15/7/29. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class MOBFBigInteger; 12 | 13 | @interface MOBFRSAKey : NSObject 14 | 15 | /** 16 | * bits in key 17 | */ 18 | @property (nonatomic) int bits; 19 | 20 | /** 21 | * modulus 22 | */ 23 | @property (nonatomic, strong) MOBFBigInteger *n; 24 | 25 | /** 26 | * public exponent 27 | */ 28 | @property (nonatomic, strong) MOBFBigInteger *e; 29 | 30 | /** 31 | * private exponent 32 | */ 33 | @property (nonatomic, strong) MOBFBigInteger *d; 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFViewControllerUtils.h 3 | // MOBFoundation 4 | // 5 | // Created by vimfung on 15-1-19. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | /** 13 | * 视图控制器工具类 14 | */ 15 | @interface MOBFViewController : NSObject 16 | 17 | /** 18 | * 获取当前视图控制器 19 | * 20 | * @return 视图控制器 21 | */ 22 | + (UIViewController *)currentViewController; 23 | 24 | /** 25 | * 获取当前视图控制器 26 | * 27 | * @param window 窗口 28 | * 29 | * @return 视图控制器 30 | */ 31 | + (UIViewController *)currentViewControllerFromWindow:(UIWindow *)window; 32 | 33 | @end 34 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFXml.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFXml.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 15/9/16. 6 | // Copyright © 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class MOBFXmlNode; 12 | 13 | /** 14 | * XML工具类 15 | */ 16 | @interface MOBFXml : NSObject 17 | 18 | /** 19 | * 根节点 20 | */ 21 | @property (nonatomic, strong, readonly) MOBFXmlNode *rootNode; 22 | 23 | /** 24 | * 初始化XML实例对象 25 | * 26 | * @param string XML字符串描述 27 | * 28 | * @return XML实例对象 29 | */ 30 | - (instancetype)initWithString:(NSString *)string; 31 | 32 | /** 33 | * 获取XML字典描述对象 34 | * 35 | * @return 字典对象 36 | */ 37 | - (NSDictionary *)dictionaryValue; 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFXmlNode.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFXmlNode.h 3 | // MOBFoundation 4 | // 5 | // Created by fenghj on 15/9/17. 6 | // Copyright © 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * XML节点 13 | */ 14 | @interface MOBFXmlNode : NSObject 15 | 16 | /** 17 | * 父级节点 18 | */ 19 | @property (nonatomic, weak) MOBFXmlNode *parentNode; 20 | 21 | /** 22 | * 节点名称 23 | */ 24 | @property (nonatomic, copy) NSString *name; 25 | 26 | /** 27 | * 属性集合 28 | */ 29 | @property (nonatomic, strong, readonly) NSMutableDictionary *attributes; 30 | 31 | /** 32 | * 子节点 33 | */ 34 | @property (nonatomic, strong, readonly) NSMutableArray *children; 35 | 36 | /** 37 | * 文本信息 38 | */ 39 | @property (nonatomic, copy) NSString *text; 40 | 41 | /** 42 | * 获取节点的字典结构描述 43 | * 44 | * @return 字典结构 45 | */ 46 | - (NSDictionary *)dictionaryValue; 47 | 48 | @end 49 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Headers/MOBFoundation.h: -------------------------------------------------------------------------------- 1 | // 2 | // MOBFoundation.h 3 | // MOBFoundation 4 | // 5 | // Created by vimfung on 15-1-16. 6 | // Copyright (c) 2015年 MOB. All rights reserved. 7 | // 8 | 9 | #ifndef MOBFoundation_MOBFoundation_h 10 | #define MOBFoundation_MOBFoundation_h 11 | 12 | #import 13 | #import 14 | #import 15 | #import 16 | #import 17 | #import 18 | #import 19 | #import 20 | #import 21 | #import 22 | #import 23 | #import 24 | #import 25 | #import 26 | 27 | #import 28 | #import 29 | #import 30 | #import 31 | 32 | #import 33 | 34 | #import 35 | #import 36 | 37 | #import 38 | 39 | #endif 40 | -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/MOBFoundation.framework/Info.plist -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/MOBFoundation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/MOBFoundation.framework/MOBFoundation -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/MOBFoundation.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Oncenote/MOBFoundation.framework/readme: -------------------------------------------------------------------------------- 1 | ========================================= 2 | MOBFoundation.framework 3 | ========================================= 4 | 5 | 1、引用此库需要添加下面依赖库: 6 | libz.dylib 7 | libicucore.dylib 8 | 9 | -------------------------------------------------------------------------------- /Oncenote/MainViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface MainViewController : UIViewController 12 | 13 | @property(nonatomic,copy) NSString* tempTitle; 14 | @property(nonatomic,copy) NSString* tempText; 15 | @property(nonatomic,strong) NSIndexPath* tempIndexPath; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Oncenote/NicknameViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // NicknameViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/17. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NicknameViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote/NoteDetailViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // NoteDetailViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/14. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NoteDetailViewController : UIViewController 12 | 13 | @property(nonatomic,copy) NSString *noteId; 14 | @property(nonatomic,copy) NSString *noteTitle; 15 | @property(nonatomic,copy) NSString *noteText; 16 | @property(nonatomic,strong) NSIndexPath *indexPath; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Oncenote/Notes.h: -------------------------------------------------------------------------------- 1 | // 2 | // Notes.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/14. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface Notes : NSObject 12 | 13 | @property(nonatomic,copy) NSString* noteId; 14 | @property(nonatomic,copy) NSString* userId; 15 | @property(nonatomic,copy) NSString* username; 16 | @property(nonatomic,copy) NSString* noteTitle; 17 | @property(nonatomic,copy) NSString* noteText; 18 | //所有应该以更新笔记的 19 | @property(nonatomic,copy) NSString* noteCreatedAt;//创建笔记的时间; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Oncenote/Notes.m: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // Notes.m 4 | // Oncenote 5 | // 6 | // Created by chenyufeng on 15/11/14. 7 | // Copyright © 2015年 chenyufengweb. All rights reserved. 8 | // 9 | 10 | #import "Notes.h" 11 | 12 | @implementation Notes 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Oncenote/RegisterViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RegisterViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/13. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RegisterViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote/SMS_SDK.framework/Headers/SMSSDK+AddressBookMethods.h: -------------------------------------------------------------------------------- 1 | // 2 | // SMSSDK+AddressBookMethods.h 3 | // SMS_SDK 4 | // 5 | // Created by 李愿生 on 15/8/25. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SMSSDK (AddressBookMethods) 12 | 13 | 14 | #pragma mark - 是否启用通讯录好友功能、提交用户资料、请求通讯好友信息 15 | /** 16 | * @brief 是否允许访问通讯录好友(is Allowed to access to address book) 17 | 18 | * @param state YES 代表启用 NO 代表不启用 默认为启用(YES,by default,means allow to access to address book) 19 | */ 20 | +(void)enableAppContactFriends:(BOOL)state; 21 | 22 | 23 | /** 24 | * @from v1.1.1 25 | * @brief 向服务端请求获取通讯录好友信息(Get the data of address book which save in the server) 26 | * 27 | * @param choose 调用参数 默认值为1(Get the chosen friend data of address book,the default value is 1) 28 | * @param result 请求结果回调(Results of the request) 29 | */ 30 | +(void)getAllContactFriends:(int)choose 31 | result:(SMSGetAllContactFriendsResultHandler)result; 32 | 33 | 34 | #pragma mark - 设置最新好友条数、显示最新好友条数 35 | /** 36 | * @brief 设置新增好友条数(The new added friends) 37 | * 38 | * @param count 好友条数(The number of friends) 39 | */ 40 | +(void)setLatelyFriendsCount:(int)count; 41 | 42 | /** 43 | * @brief 显示新增好友条数回调(Display recently new friends number callback) 44 | * 45 | * @param result 结果回调(Results of the request ) 46 | */ 47 | +(void)showFriendsBadge:(SMSShowNewFriendsCountBlock)result; 48 | 49 | @end 50 | -------------------------------------------------------------------------------- /Oncenote/SMS_SDK.framework/Headers/SMSSDK+ExtexdMethods.h: -------------------------------------------------------------------------------- 1 | // 2 | // SMSSDK+ExtexdMethods.h 3 | // SMS_SDK 4 | // 5 | // Created by 李愿生 on 15/8/25. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SMSSDK (ExtexdMethods) 12 | 13 | /** 14 | * @from v1.1.1 15 | * @brief 获取区号(Get the Area code of the country) 16 | * 17 | * @param result 请求结果回调(Results of the request) 18 | */ 19 | +(void)getCountryZone:(SMSGetZoneResultHandler)result; 20 | 21 | /** 22 | * @from v1.1.1 23 | * @brief 提交用户资料(Submit the user information data) 24 | * 25 | * @param user 用户信息(User information) 26 | * @param result 请求结果回调(Results of the request) 27 | */ 28 | +(void)submitUserInfoHandler:(SMSSDKUserInfo*)userInfo 29 | result:(SMSSubmitUserInfoResultHandler)result; 30 | 31 | @end 32 | -------------------------------------------------------------------------------- /Oncenote/SMS_SDK.framework/Headers/SMSSDKCountryAndAreaCode.h: -------------------------------------------------------------------------------- 1 | // 2 | // CountryAndAreaCode.h 3 | // SMS_SDKDemo 4 | // 5 | // Created by 掌淘科技 on 14-6-6. 6 | // Copyright (c) 2014年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * @brief 国家名称和国家码类 13 | */ 14 | @interface SMSSDKCountryAndAreaCode : NSObject 15 | 16 | /** 17 | * @brief 国家中文名称 18 | */ 19 | @property(nonatomic,copy) NSString* countryName; 20 | 21 | /** 22 | * @brief 国家码 23 | */ 24 | @property(nonatomic,copy) NSString* areaCode; 25 | 26 | /** 27 | * @brief 国家拼音名字 28 | */ 29 | @property(nonatomic,copy) NSString* pinyinName; 30 | 31 | @end 32 | -------------------------------------------------------------------------------- /Oncenote/SMS_SDK.framework/Headers/SMSSDKUserInfo.h: -------------------------------------------------------------------------------- 1 | // 2 | // UserInfo.h 3 | // SMS_SDKDemo 4 | // 5 | // Created by 掌淘科技 on 14-6-19. 6 | // Copyright (c) 2014年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * @brief SMS_UserInfo 用户信息 13 | */ 14 | @interface SMSSDKUserInfo : NSObject 15 | 16 | /** 17 | * @brief 用户头像地址 18 | */ 19 | @property(nonatomic,copy) NSString* avatar; 20 | 21 | /** 22 | * @brief 用户id 用户自行定义 23 | */ 24 | @property(nonatomic,copy) NSString* uid; 25 | 26 | /** 27 | * @brief 用户名 28 | */ 29 | @property(nonatomic,copy) NSString* nickname; 30 | 31 | /** 32 | * @brief 电话 33 | */ 34 | @property(nonatomic,copy) NSString* phone; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /Oncenote/SMS_SDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/SMS_SDK.framework/Info.plist -------------------------------------------------------------------------------- /Oncenote/SMS_SDK.framework/SMS_SDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/SMS_SDK.framework/SMS_SDK -------------------------------------------------------------------------------- /Oncenote/SMS_SDK.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/SMS_SDK.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Oncenote/SettingList.h: -------------------------------------------------------------------------------- 1 | // 2 | // SettingList.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/17. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SettingList : NSObject 12 | 13 | @property(nonatomic,strong)NSArray *settingListArray; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Oncenote/SettingList.m: -------------------------------------------------------------------------------- 1 | 2 | // 3 | // SettingList.m 4 | // Oncenote 5 | // 6 | // Created by chenyufeng on 15/11/17. 7 | // Copyright © 2015年 chenyufengweb. All rights reserved. 8 | // 9 | 10 | #import "SettingList.h" 11 | 12 | @implementation SettingList 13 | 14 | - (instancetype)init{ 15 | 16 | self = [super init]; 17 | if (self) { 18 | 19 | self.settingListArray = [[NSArray alloc] initWithObjects:@"个人资料",@"修改密码",@"应用官网",@"关于", nil]; 20 | } 21 | return self; 22 | } 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /Oncenote/SettingViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SettingViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/17. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SettingViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote/UpdatePasswordViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // UpdatePasswordViewController.h 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/17. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UpdatePasswordViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Oncenote/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Oncenote 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | 13 | int main(int argc, char * argv[]) { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Oncenote/shareImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Oncenote/shareImg.png -------------------------------------------------------------------------------- /OncenoteTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /OncenoteTests/OncenoteTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // OncenoteTests.m 3 | // OncenoteTests 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OncenoteTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation OncenoteTests 16 | 17 | - (void)setUp { 18 | [super setUp]; 19 | // Put setup code here. This method is called before the invocation of each test method in the class. 20 | } 21 | 22 | - (void)tearDown { 23 | // Put teardown code here. This method is called after the invocation of each test method in the class. 24 | [super tearDown]; 25 | } 26 | 27 | - (void)testExample { 28 | // This is an example of a functional test case. 29 | // Use XCTAssert and related functions to verify your tests produce the correct results. 30 | } 31 | 32 | - (void)testPerformanceExample { 33 | // This is an example of a performance test case. 34 | [self measureBlock:^{ 35 | // Put the code you want to measure the time of here. 36 | }]; 37 | } 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /OncenoteUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /OncenoteUITests/OncenoteUITests.m: -------------------------------------------------------------------------------- 1 | // 2 | // OncenoteUITests.m 3 | // OncenoteUITests 4 | // 5 | // Created by chenyufeng on 15/11/12. 6 | // Copyright © 2015年 chenyufengweb. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OncenoteUITests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation OncenoteUITests 16 | 17 | - (void)setUp { 18 | [super setUp]; 19 | 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | 22 | // In UI tests it is usually best to stop immediately when a failure occurs. 23 | self.continueAfterFailure = NO; 24 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method. 25 | [[[XCUIApplication alloc] init] launch]; 26 | 27 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. 28 | } 29 | 30 | - (void)tearDown { 31 | // Put teardown code here. This method is called after the invocation of each test method in the class. 32 | [super tearDown]; 33 | } 34 | 35 | - (void)testExample { 36 | // Use recording to get started writing UI tests. 37 | // Use XCTAssert and related functions to verify your tests produce the correct results. 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform:ios,'8.0' 2 | pod 'BmobSDK','~>1.6.6' 3 | pod 'AFNetworking','~>2.6.3' 4 | pod 'ShareSDK3','~>3.1.7' 5 | pod 'ShareSDK3/ShareSDKUI' 6 | pod 'ShareSDK3/ShareSDKPlatforms/QQ' 7 | pod 'ShareSDK3/ShareSDKPlatforms/SinaWeibo' 8 | pod 'ShareSDK3/ShareSDKPlatforms/WeChat' 9 | 10 | -------------------------------------------------------------------------------- /Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+AFNetworking.h 3 | // 4 | // 5 | // Created by Paulo Ferreira on 08/07/15. 6 | // 7 | // Permission is hereby granted, free of charge, to any person obtaining a copy 8 | // of this software and associated documentation files (the "Software"), to deal 9 | // in the Software without restriction, including without limitation the rights 10 | // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | // copies of the Software, and to permit persons to whom the Software is 12 | // furnished to do so, subject to the following conditions: 13 | // 14 | // The above copyright notice and this permission notice shall be included in 15 | // all copies or substantial portions of the Software. 16 | // 17 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 23 | // THE SOFTWARE. 24 | 25 | #if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) 26 | 27 | #import 28 | 29 | @interface UIImage (AFNetworking) 30 | 31 | + (UIImage*) safeImageWithData:(NSData*)data; 32 | 33 | @end 34 | 35 | #endif 36 | -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/BmobSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/BmobSDK/BmobSDK.framework/BmobSDK -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/Headers/BQLQueryResult.h: -------------------------------------------------------------------------------- 1 | // 2 | // BQLQueryResult.h 3 | // BmobSDK 4 | // 5 | // Created by limao on 15/5/11. 6 | // Copyright (c) 2015年 donson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BQLQueryResult : NSObject 12 | /** 13 | * 查询结果的 className 14 | */ 15 | @property(nonatomic, strong) NSString *className; 16 | 17 | /** 18 | * 查询的结果 BmobObject 对象列表 19 | */ 20 | @property(nonatomic, strong) NSArray *resultsAry; 21 | 22 | /** 23 | * 查询 count 结果, 只有使用 select count(*) ... 时该值信息才是有效的 24 | */ 25 | @property(nonatomic) int count; 26 | 27 | - (NSString*)description; 28 | - (BOOL)isEqual:(BQLQueryResult*)object; 29 | 30 | @end 31 | 32 | //统计查询使用的回调 33 | typedef void (^BmobBQLArrayResultBlock)(NSArray *result,NSError *error); 34 | //非统计查询使用的回调 35 | typedef void (^BmobBQLObjectResultBlock)(BQLQueryResult *result,NSError *error); 36 | -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/Headers/BmobCloud.h: -------------------------------------------------------------------------------- 1 | // 2 | // BmobCloud.h 3 | // BmobSDK 4 | // 5 | // Created by Bmob on 13-12-31. 6 | // Copyright (c) 2013年 Bmob. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BmobConfig.h" 11 | 12 | @interface BmobCloud : NSObject 13 | 14 | 15 | /** 16 | * 传入参数同步调用云函数 17 | * 18 | * @param function 函数名 19 | * @param parameters 传递给函数的参数 20 | * 21 | * @return 云函数响应结果 22 | */ 23 | +(id)callFunction:(NSString *)function withParameters:(NSDictionary *)parameters; 24 | 25 | /** 26 | * 异步调用云函数 27 | * 28 | * @param function 函数名 29 | * @param parameters 传递给函数的参数 30 | * @param block 云函数响应结果跟信息 31 | */ 32 | +(void)callFunctionInBackground:(NSString *)function withParameters:(NSDictionary *)parameters block:(BmobIdResultBlock)block; 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/Headers/BmobGPSSwitch.h: -------------------------------------------------------------------------------- 1 | // 2 | // BmobGPSSwitch.h 3 | // BmobSDK 4 | // 5 | // Created by Bmob on 14-5-13. 6 | // Copyright (c) 2014年 Bmob. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BmobGPSSwitch : NSObject 12 | 13 | /** 14 | * 是否打开GPS 15 | * 16 | * @param turnOn 是否打开GPS 17 | */ 18 | +(void)gpsSwitch:(BOOL)turnOn; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/Headers/BmobGeoPoint.h: -------------------------------------------------------------------------------- 1 | // 2 | // BmobGeoPoint.h 3 | // BmobSDK 4 | // 5 | // Created by Bmob on 13-8-6. 6 | // Copyright (c) 2013年 Bmob. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | 13 | @interface BmobGeoPoint : NSObject 14 | 15 | 16 | /// 纬度,有效范围 (-90.0, 90.0) 17 | @property(nonatomic)double latitude; 18 | 19 | /// 经度,有效范围 (-180.0, 180.0). 20 | @property(nonatomic)double longitude; 21 | 22 | 23 | /** 24 | * 初始化BmobGeoPoint 25 | * 26 | * @param mylongitude 经度 27 | * @param mylatitude 纬度 28 | * 29 | * @return 返回BmobGeoPoint对象 30 | */ 31 | -(id)initWithLongitude:(double)mylongitude WithLatitude:(double)mylatitude; 32 | 33 | 34 | /** 35 | * 设置经纬度 36 | * 37 | * @param mylongitude 经度 38 | * @param mylatitude 纬度 39 | */ 40 | -(void)setLongitude:(double)mylongitude Latitude:(double)mylatitude ; 41 | 42 | 43 | 44 | @end 45 | -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/Headers/BmobInstallation.h: -------------------------------------------------------------------------------- 1 | // 2 | // BmobInstallation.h 3 | // BmobSDK 4 | // 5 | // Created by Bmob on 14-4-25. 6 | // Copyright (c) 2014年 Bmob. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BmobObject.h" 11 | @class BmobQuery; 12 | 13 | 14 | 15 | @interface BmobInstallation : BmobObject 16 | 17 | /** 18 | * Installation表查询 19 | * 20 | * @return 查询Installation表的类 21 | */ 22 | +(BmobQuery *)query; 23 | 24 | /** 25 | * BmobInstallation实例 26 | * 27 | * @return BmobInstallation实例 28 | */ 29 | +(instancetype)currentInstallation; 30 | 31 | /** 32 | * 绑定设备DeviceToken 33 | * 34 | * @param deviceTokenData APNS返回的deviceToken 35 | */ 36 | - (void)setDeviceTokenFromData:(NSData *)deviceTokenData; 37 | 38 | 39 | @property (nonatomic,copy ) NSString *deviceType; 40 | @property (nonatomic,copy ) NSString *deviceToken; 41 | @property (nonatomic,assign ) int badge; 42 | @property (nonatomic, strong) NSArray *channels; 43 | 44 | /** 45 | * 注册订阅频道 46 | * 47 | * @param channels 订阅频道 48 | */ 49 | -(void)subsccribeToChannels:(NSArray*)channels; 50 | 51 | /** 52 | * 取消订阅频道 53 | * 54 | * @param channels 订阅频道数组 55 | */ 56 | -(void)unsubscribeFromChannels:(NSArray*)channels; 57 | @end 58 | -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/Headers/BmobObject+Subclass.h: -------------------------------------------------------------------------------- 1 | // 2 | // BmobObject+Subclass.h 3 | // PushDemo 4 | // 5 | // Created by Bmob on 15/5/27. 6 | // Copyright (c) 2015年 unknown. All rights reserved. 7 | // 8 | 9 | #import "BmobObject.h" 10 | #import "BmobQuery.h" 11 | 12 | @interface BmobObject (Subclass) 13 | 14 | +(BmobQuery *)query; 15 | /** 16 | * 保存数据 17 | */ 18 | -(void)sub_saveInBackground; 19 | 20 | /** 21 | * 保存数据 22 | * 23 | * @param block 结果回调 24 | */ 25 | -(void)sub_saveInBackgroundWithResultBlock:(BmobBooleanResultBlock)block; 26 | 27 | /** 28 | * 更新数据 29 | */ 30 | -(void)sub_updateInBackground; 31 | 32 | /** 33 | * 更新数据 34 | * 35 | * @param block 结果回调 36 | */ 37 | -(void)sub_updateInBackgroundWithResultBlock:(BmobBooleanResultBlock)block; 38 | 39 | 40 | /** 41 | * 把bmobobject对象转成子类,对BmobObject,BmobUser,BmobRole,BmobInstallation的子类有效 42 | * 43 | * @param obj BmobObject对象 44 | * @param kClass 父类的class 45 | * 46 | * @return 子类的对象 47 | */ 48 | -(instancetype)initFromBmobObject:(BmobObject *)obj; 49 | 50 | @end 51 | 52 | -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/Headers/BmobObjectsBatch.h: -------------------------------------------------------------------------------- 1 | // 2 | // BmobBatch.h 3 | // BmobSDK 4 | // 5 | // Created by Bmob on 14-4-21. 6 | // Copyright (c) 2014年 Bmob. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BmobObjectsBatch : NSObject 12 | 13 | /** 14 | * 创建某条数据,可多次调用 15 | * 16 | * @param className 表名 17 | * @param para 要创建的列名跟列的值 18 | */ 19 | -(void)saveBmobObjectWithClassName:(NSString *)className parameters:(NSDictionary*)para; 20 | 21 | /** 22 | * 更新某条数据,可多次调用 23 | * 24 | * @param className 表名 25 | * @param objectId 某行数据的objectId 26 | * @param para 要更新的列和列的值 27 | */ 28 | -(void)updateBmobObjectWithClassName:(NSString*)className objectId:(NSString*)objectId parameters:(NSDictionary*)para; 29 | 30 | /** 31 | * 删除某条数据,可多次调用 32 | * 33 | * @param className 表名 34 | * @param objectId 某条数据的objectId 35 | */ 36 | -(void)deleteBmobObjectWithClassName:(NSString *)className objectId:(NSString*)objectId; 37 | 38 | /** 39 | * 批量修改数据 40 | * 41 | * @param block 返回操作的的结果和信息 42 | */ 43 | 44 | -(void)batchObjectsInBackgroundWithResultBlock:(void(^)(BOOL isSuccessful,NSError *error))block; 45 | 46 | //再加一个方法 47 | 48 | @end 49 | -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/Headers/BmobRelation.h: -------------------------------------------------------------------------------- 1 | // 2 | // BmobRelation.h 3 | // BmobSDK 4 | // 5 | // Created by Bmob on 14-4-16. 6 | // Copyright (c) 2014年 Bmob. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BmobObject.h" 11 | 12 | 13 | @interface BmobRelation : NSObject 14 | 15 | /** 16 | * 创建BmobRelation对象实例 17 | * 18 | * @return BmobRelation对象实例 19 | */ 20 | +(instancetype)relation; 21 | 22 | /** 23 | * 添加关联关系 24 | * 25 | * @param object 添加关系的对象 26 | */ 27 | -(void)addObject:(BmobObject *)object; 28 | 29 | /** 30 | * 移除关联关系 31 | * 32 | * @param object 移除关系的对象 33 | */ 34 | -(void)removeObject:(BmobObject *)object; 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/Headers/BmobTableSchema.h: -------------------------------------------------------------------------------- 1 | // 2 | // BmobTableScheme.h 3 | // BmobSDK 4 | // 5 | // Created by limao on 15/7/24. 6 | // Copyright (c) 2015年 donson. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BmobTableSchema : NSObject 12 | 13 | @property (nonatomic,readonly,copy) NSString *className; /**< 表名 */ 14 | 15 | @property (nonatomic,readonly,copy) NSDictionary *fields; /**< 表结构,结构{@"列名":结构字典} */ 16 | 17 | /** 18 | * 指定初始化方法 19 | * 20 | * @param bmobTableSchemaDic 初始化用的dic,结构为@{@"className":@"name",@"fields":dic} 21 | * 22 | * @return BmobTableSchema对象 23 | */ 24 | -(instancetype)initWithBmobTableSchemaDic:(NSDictionary*)bmobTableSchemaDic; 25 | @end 26 | -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/BmobSDK/BmobSDK.framework/Info.plist -------------------------------------------------------------------------------- /Pods/BmobSDK/BmobSDK.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/BmobSDK/BmobSDK.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Pods/BmobSDK/README.md: -------------------------------------------------------------------------------- 1 | Bmob iOS SDK 2 | =========== 3 | 4 | # 快速入门 5 | 6 | 不知道如何使用Bmob iOS SDK的朋友可以移步查看我们为大家准备的快速入门文档:http://docs.bmob.cn/ios/faststart/index.html?menukey=fast_start&key=start_ios 7 | 8 | 9 | # 在CocoaPod中安装BmobSDK 10 | 11 | 请查看相关文档:https://github.com/bmob/bmob-ios-sdk/blob/master/InstallCocoaPods.md 12 | 13 | # 源码说明 14 | 15 | 16 | `BmobSDK.framework`为Bmob提供的SDK包,当前为1.6.6版本。 17 | 18 | 19 | # Bmob官方信息 20 | 21 | 官方网址:[http://www.bmob.cn](http://www.bmob.cn) 22 | 23 | 问答社区:[http://wenda.bmob.cn](http://wenda.bmob.cn) 24 | 25 | 技术邮箱:support@bmob.cn 26 | 27 | 28 | -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WBHttpRequest+WeiboGame.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest+WeiboGame.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WBHttpRequest+WeiboShare.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest+WeiboShare.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WBHttpRequest+WeiboToken.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest+WeiboToken.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WBHttpRequest+WeiboUser.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest+WeiboUser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WBHttpRequest.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WBSDKBasicButton.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBSDKBasicButton.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WBSDKCommentButton.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBSDKCommentButton.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WBSDKRelationshipButton.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBSDKRelationshipButton.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WXApi.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/WeChatSDK/WXApi.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WXApiObject.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/WeChatSDK/WXApiObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WechatAuthSDK.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/WeChatSDK/WechatAuthSDK.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WeiboSDK+Statistics.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK+Statistics.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WeiboSDK.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.h -------------------------------------------------------------------------------- /Pods/Headers/Private/ShareSDK3/WeiboUser.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BQLQueryResult.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BQLQueryResult.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/Bmob.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/Bmob.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobACL.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobACL.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobCloud.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobCloud.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobConfig.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobErrorList.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobErrorList.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobEvent.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobFile.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobFile.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobGPSSwitch.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobGPSSwitch.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobGeoPoint.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobGeoPoint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobImage.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobInstallation.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobInstallation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobMessage.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobObject+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobObject+Subclass.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobObject.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobObjectsBatch.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobObjectsBatch.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobProFile.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobProFile.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobPush.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobPush.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobQuery.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobQuery.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobRelation.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobRelation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobRole.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobRole.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobSMS.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobSMS.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobTableSchema.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobTableSchema.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BmobSDK/BmobSDK/BmobUser.h: -------------------------------------------------------------------------------- 1 | ../../../../BmobSDK/BmobSDK.framework/Headers/BmobUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/ISSDKAuthView.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/ISSDKAuthView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/NSMutableDictionary+SSDKInit.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/NSMutableDictionary+SSDKInit.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/NSMutableDictionary+SSDKShare.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/NSMutableDictionary+SSDKShare.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKAuthView.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKAuthView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKAuthViewStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKAuthViewStyle.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKContentEntity.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKContentEntity.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKCredential.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKCredential.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKData.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKData.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKFriendsPaging.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKFriendsPaging.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKImage.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKMailViewControllerStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKMailViewControllerStyle.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKPlatform.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKPlatform.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKSMSViewControllerStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKSMSViewControllerStyle.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKTypeDefine.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKTypeDefine.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKUser.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/SSDKUserQueryConditional.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKUserQueryConditional.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/ShareSDK+Base.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/ShareSDK+Base.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDK/ShareSDK.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDK.framework/Headers/ShareSDK.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKConnector/ShareSDKConnector.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKConnector.framework/Headers/ShareSDKConnector.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKExtension/SSEBaseUser.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKExtension.framework/Headers/SSEBaseUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKExtension/SSEShareHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKExtension.framework/Headers/SSEShareHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKExtension/SSEThirdPartyLoginHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKExtension.framework/Headers/SSEThirdPartyLoginHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKExtension/ShareSDK+Extension.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKExtension.framework/Headers/ShareSDK+Extension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKUI/SSUIEditorViewStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUIEditorViewStyle.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKUI/SSUIShareActionSheetController.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUIShareActionSheetController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKUI/SSUIShareActionSheetCustomItem.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUIShareActionSheetCustomItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKUI/SSUIShareActionSheetItem.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUIShareActionSheetItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKUI/SSUIShareActionSheetStyle.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUIShareActionSheetStyle.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKUI/SSUIShareContentEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUIShareContentEditorViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKUI/SSUITypeDef.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUITypeDef.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKUI/ShareSDK+SSUI.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKUI.framework/Headers/ShareSDK+SSUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/ShareSDKUI/ShareSDKUI.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/ShareSDKUI.framework/Headers/ShareSDKUI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/TencentOpenAPI/QQApiInterface.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/extends/QQSDK/TencentOpenAPI.framework/Headers/QQApiInterface.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/TencentOpenAPI/QQApiInterfaceObject.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/extends/QQSDK/TencentOpenAPI.framework/Headers/QQApiInterfaceObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/TencentOpenAPI/TencentApiInterface.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/extends/QQSDK/TencentOpenAPI.framework/Headers/TencentApiInterface.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/TencentOpenAPI/TencentMessageObject.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/extends/QQSDK/TencentOpenAPI.framework/Headers/TencentMessageObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/TencentOpenAPI/TencentOAuth.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/extends/QQSDK/TencentOpenAPI.framework/Headers/TencentOAuth.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/TencentOpenAPI/TencentOAuthObject.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/extends/QQSDK/TencentOpenAPI.framework/Headers/TencentOAuthObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/TencentOpenAPI/WeiBoAPI.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/extends/QQSDK/TencentOpenAPI.framework/Headers/WeiBoAPI.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/TencentOpenAPI/sdkdef.h: -------------------------------------------------------------------------------- 1 | ../../../../ShareSDK3/libraries/extends/QQSDK/TencentOpenAPI.framework/Headers/sdkdef.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WBHttpRequest+WeiboGame.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest+WeiboGame.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WBHttpRequest+WeiboShare.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest+WeiboShare.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WBHttpRequest+WeiboToken.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest+WeiboToken.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WBHttpRequest+WeiboUser.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest+WeiboUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WBHttpRequest.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WBSDKBasicButton.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBSDKBasicButton.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WBSDKCommentButton.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBSDKCommentButton.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WBSDKRelationshipButton.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WBSDKRelationshipButton.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WXApi.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/WeChatSDK/WXApi.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WXApiObject.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/WeChatSDK/WXApiObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WechatAuthSDK.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/WeChatSDK/WechatAuthSDK.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WeiboSDK+Statistics.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK+Statistics.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WeiboSDK.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ShareSDK3/WeiboUser.h: -------------------------------------------------------------------------------- 1 | ../../../ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboUser.h -------------------------------------------------------------------------------- /Pods/ShareSDK3/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright © 2012-2015 mob -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.bundle/Base.lproj/ShareSDK.strings: -------------------------------------------------------------------------------- 1 | /* 2 | ShareSDKLocalizable.strings 3 | AppgoFramework 4 | 5 | 6 | Created by ShareSDK.cn on 13-1-14. 7 | 官网地址:http://www.mob.com 8 | 技术支持邮箱:support@sharesdk.cn 9 | 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 10 | 商务QQ:4006852216 11 | Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 12 | 13 | */ 14 | 15 | "AUTH_VIEW_TITLE" = "用户授权"; 16 | "AUTH_VIEW_CANCEL_BUTTON" = "取消"; 17 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.bundle/en.lproj/ShareSDK.strings: -------------------------------------------------------------------------------- 1 | /* 2 | ShareSDKLocalizable.strings 3 | AppgoFramework 4 | 5 | 6 | Created by ShareSDK.cn on 13-1-14. 7 | 官网地址:http://www.ShareSDK.cn 8 | 技术支持邮箱:support@sharesdk.cn 9 | 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 10 | 商务QQ:4006852216 11 | Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 12 | 13 | */ 14 | 15 | "AUTH_VIEW_TITLE" = "Authorize"; 16 | "AUTH_VIEW_CANCEL_BUTTON" = "Cancel"; -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.bundle/zh-Hans.lproj/ShareSDK.strings: -------------------------------------------------------------------------------- 1 | /* 2 | ShareSDKLocalizable.strings 3 | AppgoFramework 4 | 5 | 6 | Created by ShareSDK.cn on 13-1-14. 7 | 官网地址:http://www.mob.com 8 | 技术支持邮箱:support@sharesdk.cn 9 | 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 10 | 商务QQ:4006852216 11 | Copyright (c) 2013年 ShareSDK.cn. All rights reserved. 12 | 13 | */ 14 | 15 | "AUTH_VIEW_TITLE" = "用户授权"; 16 | "AUTH_VIEW_CANCEL_BUTTON" = "取消"; 17 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/ISSDKAuthView.h: -------------------------------------------------------------------------------- 1 | // 2 | // ISSDKAuthView.h 3 | // ShareSDK 4 | // 5 | // Created by fenghj on 15/12/2. 6 | // Copyright © 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "SSDKTypeDefine.h" 11 | 12 | 13 | @protocol ISSDKAuthView 14 | 15 | /** 16 | * 取消授权 17 | */ 18 | - (void)cancel; 19 | 20 | /** 21 | * 授权状态变更时触发 22 | * 23 | * @param stateChangedHandler 授权状态变更处理器 24 | */ 25 | - (void)onAuthStateChanged:(SSDKAuthorizeStateChangedHandler)stateChangedHandler; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKAuthView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKAuthView.h 3 | // ShareSDK 4 | // 5 | // Created by 冯 鸿杰 on 15/2/27. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "SSDKTypeDefine.h" 11 | 12 | /** 13 | * 授权视图 14 | */ 15 | @interface SSDKAuthView : UIView 16 | 17 | /** 18 | * 取消授权 19 | */ 20 | - (void)cancel; 21 | 22 | /** 23 | * 授权状态变更时触发 24 | * 25 | * @param stateChangedHandler 授权状态变更处理器 26 | */ 27 | - (void)onAuthStateChanged:(SSDKAuthorizeStateChangedHandler)stateChangedHandler; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKContentEntity.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKContentEntity.h 3 | // ShareSDK 4 | // 5 | // Created by 冯 鸿杰 on 15/2/9. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 内容实体 13 | */ 14 | @interface SSDKContentEntity : NSObject 15 | 16 | /** 17 | * 内容标识 18 | */ 19 | @property (nonatomic, copy) NSString *cid; 20 | 21 | /** 22 | * 分享文本 23 | */ 24 | @property (nonatomic, copy) NSString *text; 25 | 26 | /** 27 | * 分享图片列表,元素为SSDKImage 28 | */ 29 | @property (nonatomic, retain) NSArray *images; 30 | 31 | /** 32 | * 分享链接列表,元素为NSURL 33 | */ 34 | @property (nonatomic, retain) NSArray *urls; 35 | 36 | /** 37 | * 原始数据 38 | */ 39 | @property (nonatomic, retain) id rawData; 40 | 41 | @end 42 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKCredential.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKAuthorizeCredential.h 3 | // ShareSDK 4 | // 5 | // Created by 冯 鸿杰 on 15/2/6. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 授权类型 13 | */ 14 | typedef NS_ENUM(NSUInteger, SSDKCredentialType){ 15 | /** 16 | * 未知 17 | */ 18 | SSDKCredentialTypeUnknown = 0, 19 | /** 20 | * OAuth 1.x 21 | */ 22 | SSDKCredentialTypeOAuth1x = 1, 23 | /** 24 | * OAuth 2 25 | */ 26 | SSDKCredentialTypeOAuth2 = 2, 27 | }; 28 | 29 | /** 30 | * 授权凭证 31 | */ 32 | @interface SSDKCredential : NSObject 33 | 34 | /** 35 | * 用户标识 36 | */ 37 | @property (nonatomic, copy) NSString *uid; 38 | 39 | /** 40 | * 用户令牌 41 | */ 42 | @property (nonatomic, copy) NSString *token; 43 | 44 | /** 45 | * 用户令牌密钥 46 | */ 47 | @property (nonatomic, copy) NSString *secret; 48 | 49 | /** 50 | * 过期时间 51 | */ 52 | @property (nonatomic, strong) NSDate *expired; 53 | 54 | /** 55 | * 授权类型 56 | */ 57 | @property (nonatomic) SSDKCredentialType type; 58 | 59 | /** 60 | * 原始数据 61 | */ 62 | @property (nonatomic, strong) NSDictionary *rawData; 63 | 64 | /** 65 | * 标识授权是否可用,YES 可用, NO 已过期 66 | */ 67 | @property (nonatomic, readonly) BOOL available; 68 | 69 | @end 70 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKData.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKData.h 3 | // ShareSDK 4 | // 5 | // Created by fenghj on 15/6/5. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 数据 13 | */ 14 | @interface SSDKData : NSObject 15 | 16 | /** 17 | * 初始化数据 18 | * 19 | * @param URL 数据的地址 20 | * 21 | * @return 数据对象 22 | */ 23 | - (id)initWithURL:(NSURL *)URL; 24 | 25 | /** 26 | * 初始化数据 27 | * 28 | * @param data 原始数据对象 29 | * 30 | * @return 数据对象 31 | */ 32 | - (id)initWithData:(NSData *)data; 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKFriendsPaging.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKFriendsPaging.h 3 | // ShareSDK 4 | // 5 | // Created by 冯 鸿杰 on 15/2/6. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 好友分页信息 13 | */ 14 | @interface SSDKFriendsPaging : NSObject 15 | 16 | /** 17 | * 前一个游标位置 18 | */ 19 | @property (nonatomic) NSInteger prevCursor; 20 | 21 | /** 22 | * 下一个游标位置 23 | */ 24 | @property (nonatomic) NSInteger nextCursor; 25 | 26 | /** 27 | * 总数 28 | */ 29 | @property (nonatomic) NSUInteger total; 30 | 31 | /** 32 | * 是否存在下一页标识 33 | */ 34 | @property (nonatomic) BOOL hasNext; 35 | 36 | /** 37 | * 好友用户信息列表 38 | */ 39 | @property (nonatomic, strong) NSArray *users; 40 | 41 | @end 42 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKImage.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKImage.h 3 | // ShareSDK 4 | // 5 | // Created by 冯 鸿杰 on 15/2/25. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | /** 13 | * JPG图片格式 14 | */ 15 | extern NSString *const SSDKImageFormatJpeg; 16 | 17 | /** 18 | * PNG图片格式 19 | */ 20 | extern NSString *const SSDKImageFormatPng; 21 | 22 | /** 23 | * 图片质量键,当图片为JPG时有效 24 | */ 25 | extern NSString *const SSDKImageSettingQualityKey; 26 | 27 | /** 28 | * 图片 29 | */ 30 | @interface SSDKImage : NSObject 31 | 32 | /** 33 | * 初始化图片 34 | * 35 | * @param URL 图片路径 36 | * 37 | * @return 图片对象 38 | */ 39 | - (id)initWithURL:(NSURL *)URL; 40 | 41 | /** 42 | * 初始化图片 43 | * 44 | * @param image 原始的图片对象 45 | * @param format 图片格式,由SSDKImageFormatJpeg和SSDKImageFormatPng来指定分享出去的是JPG还是PNG图片,如果传入其他值则默认为JPG 46 | * 47 | * @return 图片对象 48 | */ 49 | - (id)initWithImage:(UIImage *)image format:(NSString *)format settings:(NSDictionary *)settings; 50 | 51 | /** 52 | * 获取原生图片对象 53 | * 54 | * @param handler 处理器 55 | */ 56 | - (void)getNativeImage:(void(^)(UIImage *image))handler; 57 | 58 | @end 59 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKMailViewControllerStyle.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKMailViewControllerStyle.h 3 | // ShareSDK 4 | // 5 | // Created by 刘靖煌 on 15/12/24. 6 | // Copyright © 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SSDKMailViewControllerStyle : NSObject 12 | 13 | /** 14 | * 获取授权视图风格共享实例 15 | * 16 | * @return 风格类实例 17 | */ 18 | + (instancetype)sharedInstance; 19 | 20 | /** 21 | * 支持的方向 22 | */ 23 | @property (nonatomic, assign) UIInterfaceOrientationMask supportedInterfaceOrientation; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKPlatform.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKPlatform.h 3 | // ShareSDK 4 | // 5 | // Created by 冯 鸿杰 on 15/2/6. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "SSDKTypeDefine.h" 11 | 12 | /** 13 | * 分享平台信息 14 | */ 15 | @interface SSDKPlatform : NSObject 16 | 17 | /** 18 | * 平台类型 19 | */ 20 | @property (nonatomic) SSDKPlatformType type; 21 | 22 | /** 23 | * 平台名称 24 | */ 25 | @property (nonatomic, copy) NSString *name; 26 | 27 | /** 28 | * 平台图标 29 | */ 30 | @property (nonatomic, retain) UIImage *icon; 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKSMSViewControllerStyle.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKSMSViewControllerStyle.h 3 | // ShareSDK 4 | // 5 | // Created by 刘靖煌 on 15/12/24. 6 | // Copyright © 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SSDKSMSViewControllerStyle : NSObject 12 | 13 | /** 14 | * 获取授权视图风格共享实例 15 | * 16 | * @return 风格类实例 17 | */ 18 | + (instancetype)sharedInstance; 19 | 20 | /** 21 | * 支持的方向 22 | */ 23 | @property (nonatomic, assign) UIInterfaceOrientationMask supportedInterfaceOrientation; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Headers/SSDKUserQueryConditional.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSDKUserQuery.h 3 | // ShareSDK 4 | // 5 | // Created by 冯 鸿杰 on 15/2/6. 6 | // Copyright (c) 2015年 掌淘科技. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 用户查询条件 13 | */ 14 | @interface SSDKUserQueryConditional : NSObject 15 | 16 | /** 17 | * 创建用户标识查询条件 18 | * 19 | * @param uid 用户标识 20 | * 21 | * @return 查询条件对象 22 | */ 23 | + (SSDKUserQueryConditional *)userQueryConditionalByUserId:(NSString *)uid; 24 | 25 | /** 26 | * 创建用户名称查询条件 27 | * 28 | * @param userName 用户名称 29 | * 30 | * @return 查询条件对象 31 | */ 32 | + (SSDKUserQueryConditional *)userQueryConditionalByUserName:(NSString *)userName; 33 | 34 | /** 35 | * 创建用户路径查询条件 36 | * 37 | * @param path 用户主页路径 38 | * 39 | * @return 查询条件对象 40 | */ 41 | + (SSDKUserQueryConditional *)userQueryConditionalByPath:(NSString *)path; 42 | 43 | @end 44 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDK.framework/Info.plist -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDK.framework/ShareSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDK.framework/ShareSDK -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKConnector.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKConnector.framework/Info.plist -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKConnector.framework/ShareSDKConnector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKConnector.framework/ShareSDKConnector -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKExtension.framework/Headers/SSEBaseUser.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSEBaseUser.h 3 | // ShareSDKExtension 4 | // 5 | // Created by fenghj on 15/6/24. 6 | // Copyright (c) 2015年 mob. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * 基础用户信息对象 13 | */ 14 | @interface SSEBaseUser : NSObject 15 | 16 | /** 17 | * 关联标识, 能够与应用用户系统中的用户唯一对应的标识 18 | */ 19 | @property (nonatomic, copy, readonly) NSString *linkId; 20 | 21 | /** 22 | * 关联的社交用户信息 23 | */ 24 | @property (nonatomic, strong, readonly) NSDictionary *socialUsers; 25 | 26 | /** 27 | * 更新用户信息, 当成功登录后会自动触发此方法进行用户信息更新, 一般用于在登录成功后将服务器端用户信息赋值于该对象,子类需要覆盖此方法实现 28 | * 29 | * @param data 数据 30 | */ 31 | - (void)updateInfo:(id)data; 32 | 33 | @end 34 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKExtension.framework/Headers/ShareSDK+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // ShareSDK+Extension.h 3 | // ShareSDKExtension 4 | // 5 | // Created by fenghj on 15/7/28. 6 | // Copyright (c) 2015年 mob. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * ShareSDK扩展类目 13 | */ 14 | @interface ShareSDK (Extension) 15 | 16 | /** 17 | * 是否安装客户端(支持平台:微博、微信、QQ、QZone、Facebook) 18 | * 19 | * @param platformType 平台类型 20 | * 21 | * @return YES 已安装,NO 尚未安装 22 | */ 23 | + (BOOL)isClientInstalled:(SSDKPlatformType)platformType; 24 | 25 | /** 26 | * 根据API接口返回的原始数据来创建用户对象 27 | * 28 | * @param rawData 原始数据 29 | * @param platformType 平台类型 30 | * 31 | * @return 用户信息对象 32 | */ 33 | + (SSDKUser *)userByRawData:(NSDictionary *)rawData forPlatformType:(SSDKPlatformType)platformType; 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKExtension.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKExtension.framework/Info.plist -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKExtension.framework/ShareSDKExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKExtension.framework/ShareSDKExtension -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/ContentEditorImg/line@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/ContentEditorImg/line@2x.gif -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_1.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_10.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_10@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_11.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_11@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_12.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_12@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_14.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_14@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_15.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_15@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_16.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_16@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_17.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_17@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_18.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_18@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_19.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_19@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_1@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_2.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_20.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_20@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_21.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_21@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_22.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_22@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_23.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_23@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_24.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_24@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_25.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_25@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_26.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_26@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_27.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_27@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_27@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_2@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_30.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_30@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_34.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_34@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_34@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_35.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_35@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_35@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_36.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_36@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_36@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_37.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_37@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_37@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_38.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_38@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_38@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_39.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_39@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_39@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_40.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_40@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_41.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_41@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_41@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_42.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_42@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_42@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_43.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_43@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_43@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_44.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_44@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_45.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_45@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_45@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_5.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_50.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_50@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_5@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_6.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_6@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_7.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_7@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_8.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_8@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_996.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_996.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_996@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.bundle/Icon/sns_icon_996@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUIShareActionSheetController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSUIShareActionSheet.h 3 | // ShareSDKUI 4 | // 5 | // Created by 刘 靖煌 on 15/6/18. 6 | // Copyright (c) 2015年 mob. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | #import "SSUITypeDef.h" 12 | 13 | /** 14 | * 分享菜单 15 | */ 16 | @interface SSUIShareActionSheetController : NSObject 17 | 18 | /** 19 | * 支持点击分享菜单栏平台后直接分享的平台(不显示分享编辑页面),默认支持微信和QQ平台。 20 | */ 21 | @property (nonatomic, strong) NSMutableSet *directSharePlatforms; 22 | 23 | /** 24 | * 初始化分享菜单 25 | * 26 | * @param items 菜单项集合 27 | * 28 | * @return 分享菜单控制器对象 29 | */ 30 | - (instancetype)initWithItems:(NSArray *)items; 31 | 32 | /** 33 | * 显示分享菜单 34 | * 35 | * @param view 要显示菜单的视图 36 | */ 37 | - (void)showInView:(UIView *)view; 38 | 39 | /** 40 | * 使分享菜单消失 41 | */ 42 | - (void)dismiss; 43 | 44 | /** 45 | * 菜单项点击事件 46 | * 47 | * @param itemClickHandler 菜单项点击事件处理器 48 | */ 49 | - (void)onItemClick:(SSUIShareActionSheetItemClickHandler)itemClickHandler; 50 | 51 | /** 52 | * 分享菜单取消事件 53 | * 54 | * @param cancelHandler 取消事件处理器 55 | */ 56 | - (void)onCancel:(SSUIShareActionSheetCancelHandler)cancelHandler; 57 | 58 | @end 59 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUIShareActionSheetCustomItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSUIShareActionSheetCustomItem.h 3 | // ShareSDKUI 4 | // 5 | // Created by fenghj on 15/6/18. 6 | // Copyright (c) 2015年 mob. All rights reserved. 7 | // 8 | 9 | #import "SSUIShareActionSheetItem.h" 10 | 11 | /** 12 | * 自定义分享菜单项 13 | */ 14 | @interface SSUIShareActionSheetCustomItem : SSUIShareActionSheetItem 15 | 16 | /** 17 | * 初始化自定义分享菜单项 18 | * 19 | * @param icon 图标 20 | * @param label 标签 21 | * @param clickHandler 点击事件 22 | * 23 | * @return 分享菜单项对象 24 | */ 25 | - (instancetype)initWithIcon:(UIImage *)icon 26 | label:(NSString *)label 27 | clickHandler:(void(^)())clickHandler; 28 | 29 | /** 30 | * 触发点击 31 | */ 32 | - (void)triggerClick; 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUIShareActionSheetItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSUIShareActionSheetItem.h 3 | // ShareSDKUI 4 | // 5 | // Created by fenghj on 15/6/18. 6 | // Copyright (c) 2015年 mob. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | /** 13 | * 分享菜单项 14 | */ 15 | @interface SSUIShareActionSheetItem : NSObject 16 | { 17 | UIImage *_icon; 18 | NSString *_label; 19 | } 20 | 21 | /** 22 | * 图标 23 | */ 24 | @property (nonatomic, strong) UIImage *icon; 25 | 26 | /** 27 | * 标签 28 | */ 29 | @property (nonatomic, copy) NSString *label; 30 | 31 | /** 32 | * 创建平台分享菜单项 33 | * 34 | * @param platformType 平台类型 35 | * @param index 数组下标 36 | * 37 | * @return 分享菜单项 38 | */ 39 | + (instancetype)itemWithPlatformType:(SSDKPlatformType)platformType; 40 | 41 | /** 42 | * 创建自定义分享菜单项 43 | * 44 | * @param icon 图标 45 | * @param label 标签 46 | * @param clickHandler 点击事件处理 47 | * 48 | * @return 分享菜单项 49 | */ 50 | + (instancetype)itemWithIcon:(UIImage *)icon label:(NSString *)label onClick:(void(^)())clickHandler; 51 | 52 | @end 53 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.framework/Headers/SSUIShareContentEditorViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSUIShareContentEditorView.h 3 | // ShareSDKUI 4 | // 5 | // Created by fenghj on 15/6/18. 6 | // Copyright (c) 2015年 mob. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | #import 12 | #import "SSUITypeDef.h" 13 | 14 | /** 15 | * 内容编辑视图 16 | */ 17 | @interface SSUIShareContentEditorViewController : NSObject 18 | 19 | /** 20 | * 初始化内容编辑视图 21 | * 22 | * @param content 内容 23 | * @param image 图片 24 | * @param platformTypes 平台列表 25 | * 26 | * @return 内容视图 27 | */ 28 | - (instancetype)initWithContent:(NSString *)content 29 | image:(SSDKImage *)image 30 | platformTypes:(NSArray *)platformTypes; 31 | 32 | /** 33 | * 显示编辑视图 34 | */ 35 | - (void)show; 36 | 37 | /** 38 | * 关闭编辑视图 39 | */ 40 | - (void)dismiss; 41 | 42 | /** 43 | * 提交事件 44 | * 45 | * @param submitHandler 提交事件触发器 46 | */ 47 | - (void)onSubmit:(SSUIShareContentEditorViewSubmitHandler)submitHandler; 48 | 49 | /** 50 | * 取消事件 51 | * 52 | * @param cancelHandler 取消事件触发器 53 | */ 54 | - (void)onCancel:(SSUIShareContentEditorViewCancelHandler)cancelHandler; 55 | 56 | @end 57 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.framework/Headers/ShareSDKUI.h: -------------------------------------------------------------------------------- 1 | // 2 | // ShareSDKUI.h 3 | // ShareSDKUI 4 | // 5 | // Created by fenghj on 15/6/18. 6 | // Copyright (c) 2015年 mob. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "ShareSDK+SSUI.h" 11 | #import "SSUIShareActionSheetController.h" 12 | #import "SSUIShareContentEditorViewController.h" 13 | 14 | @interface ShareSDKUI : NSObject 15 | 16 | /** 17 | * 创建分享菜单 18 | * 19 | * @param items 分享菜单项 20 | * 21 | * @return 分享菜单控制器 22 | */ 23 | + (SSUIShareActionSheetController *)shareActionSheetWithItems:(NSArray *)items; 24 | 25 | /** 26 | * 创建内容编辑视图 27 | * 28 | * @param content 内容 29 | * @param image 图片 30 | * @param platformTypes 分享平台列表 31 | * 32 | * @return 内容编辑视图控制器 33 | */ 34 | + (SSUIShareContentEditorViewController *)contentEditorViewWithContent:(NSString *)content 35 | image:(SSDKImage *)image 36 | platformTypes:(NSArray *)platformTypes; 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.framework/Info.plist -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/ShareSDKUI.framework/ShareSDKUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/ShareSDKUI.framework/ShareSDKUI -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/QQSDK/TencentOpenAPI.framework/TencentOpenAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/QQSDK/TencentOpenAPI.framework/TencentOpenAPI -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/error.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/ios_open_sdk_2.9.3.2_iphone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/ios_open_sdk_2.9.3.2_iphone -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/qqicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/qqicon.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/QQSDK/TencentOpenApi_IOS_Bundle.bundle/success.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WBHttpRequest+WeiboToken.h: -------------------------------------------------------------------------------- 1 | // 2 | // WBHttpRequest+WeiboToken.h 3 | // WeiboSDK 4 | // 5 | // Created by DannionQiu on 14/11/6. 6 | // Copyright (c) 2014年 SINA iOS Team. All rights reserved. 7 | // 8 | 9 | #import "WBHttpRequest.h" 10 | 11 | @interface WBHttpRequest (WeiboToken) 12 | /*! 13 | @method 14 | 15 | @abstract 16 | 使用RefreshToken去换取新的身份凭证AccessToken. 17 | 18 | @discussion 19 | 在SSO授权登录后,服务器会下发有效期为7天的refreshToken以及有效期为1天的AccessToken。 20 | 当有效期为1天的AccessToken过期时,可以调用该接口带着refreshToken信息区换取新的AccessToken。 21 | @param refreshToken refreshToken 22 | 23 | @param queue 指定发送请求的NSOperationQueue,如果这个参数为nil,则请求会发送在MainQueue( [NSOperationQueue mainQueue] )中。 24 | 25 | @param handler 完成请求后会回调handler,处理完成请求后的逻辑。 26 | */ 27 | + (WBHttpRequest *)requestForRenewAccessTokenWithRefreshToken:(NSString*)refreshToken 28 | queue:(NSOperationQueue*)queue 29 | withCompletionHandler:(WBRequestHandler)handler; 30 | @end 31 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WBSDKBasicButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // WBSDKBasicButton.h 3 | // WeiboSDK 4 | // 5 | // Created by DannionQiu on 14/10/24. 6 | // Copyright (c) 2014年 SINA iOS Team. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class WBSDKBasicButton; 12 | typedef void (^WBSDKButtonHandler)(WBSDKBasicButton *button, 13 | BOOL isSuccess, 14 | NSDictionary *resultDict); 15 | 16 | @interface WBSDKBasicButton : UIButton 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WBSDKCommentButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // WBSDKCommentButton.h 3 | // WeiboSDK 4 | // 5 | // Created by DannionQiu on 14/10/26. 6 | // Copyright (c) 2014年 SINA iOS Team. All rights reserved. 7 | // 8 | 9 | #import "WBSDKBasicButton.h" 10 | 11 | @interface WBSDKCommentButton : WBSDKBasicButton 12 | 13 | /** 14 | 初始化一个社会化评论按钮 15 | @param frame 按钮的frame值 16 | @param accessToken 用户授权后获取的Token 17 | @param keyWord 社会化评论的热点词 18 | @param urlString 社会化评论链接,可传空 19 | @param category 领域ID, 此参数为必选参数。 20 | @param handler 回调函数,当用户点击按钮,进行完与社会化评论组件相关的交互之后,回调的函数。 21 | */ 22 | - (id)initWithFrame:(CGRect)frame 23 | accessToken:(NSString*)accessToken 24 | keyword:(NSString*)keyWord 25 | urlString:(NSString*)urlString 26 | category:(NSString*)category 27 | completionHandler:(WBSDKButtonHandler)handler; 28 | 29 | @property (nonatomic, strong)NSString* keyWord; 30 | @property (nonatomic, strong)NSString* accessToken; 31 | @property (nonatomic, strong)NSString* urlString; 32 | @property (nonatomic, strong)NSString* category; 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WBSDKRelationshipButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // WBSDKRelationshipButton.h 3 | // WeiboSDK 4 | // 5 | // Created by DannionQiu on 14/10/26. 6 | // Copyright (c) 2014年 SINA iOS Team. All rights reserved. 7 | // 8 | 9 | #import "WBSDKBasicButton.h" 10 | 11 | enum 12 | { 13 | WBSDKRelationshipButtonStateFollow, 14 | WBSDKRelationshipButtonStateUnfollow 15 | }; 16 | typedef NSUInteger WBSDKRelationshipButtonState; 17 | 18 | 19 | 20 | @interface WBSDKRelationshipButton : WBSDKBasicButton 21 | 22 | /** 23 | 初始化一个关注组件按钮 24 | @param frame 按钮的frame值 25 | @param accessToken 用户授权后获取的Token 26 | @param currentUserID 当前用户的uid值 27 | @param followerUserID 希望当前用户加关注的用户uid值 28 | @param handler 回调函数,当用户点击按钮,进行完关注组件相关的交互之后,回调的函数。 29 | */ 30 | - (id)initWithFrame:(CGRect)frame 31 | accessToken:(NSString*)accessToken 32 | currentUser:(NSString*)currentUserID 33 | followUser:(NSString*)followerUserID 34 | completionHandler:(WBSDKButtonHandler)handler; 35 | 36 | @property (nonatomic, strong)NSString* accessToken; 37 | @property (nonatomic, strong)NSString* currentUserID; 38 | @property (nonatomic, strong)NSString* followUserID; 39 | 40 | 41 | @property (nonatomic, assign)WBSDKRelationshipButtonState currentRelationShip; 42 | 43 | 44 | /** 45 | 获取最新的关注状态 46 | 该方法会调用OpenApi,获取当前用户与目标用户之间的关注状态,并将按钮的状态改变为正确的状态。 47 | */ 48 | - (void)checkCurrentRelationship; 49 | 50 | @end 51 | -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/alert_error_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/alert_error_icon@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/alert_success_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/alert_success_icon@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/close.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/close@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_disable@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_big_blue_highlighted@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_button_white_highlighted@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_icon_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/common_icon_arrow@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_keyboardbutton_background@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/compose_toolbar_background@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/empty_failed@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_background@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/login_country_background_highlighted@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/navigationbar_background_os7@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/progresshud_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/progresshud_background@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/sdk_weibo_logo@3x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@3x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/timeline_relationship_icon_attention@3x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button@3x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@2x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/images/verify_code_button_highlighted@3x.png -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/others/countryList: -------------------------------------------------------------------------------- 1 | {"香港地区":{"code":"00852","rule":{"mcc":["454"]}},"台湾地区":{"code":"00886","rule":{"mcc":["466"]}},"澳门地区":{"code":"00853","rule":{"mcc":["455"]}},"日本":{"code":"0081","rule":{"mcc":["440","441"]}},"韩国":{"code":"0082","rule":{"mcc":["450"]}},"新加坡":{"code":"0065","rule":{"mcc":["525"]}},"马来西亚":{"code":"0060","rule":{"mcc":["502"]}},"美国":{"code":"001","rule":{"mcc":["310","311","316"]}},"加拿大":{"code":"001","rule":{"mcc":["302"]}},"澳大利亚":{"code":"0061","rule":{"mcc":["505"]}},"英国":{"code":"0044","rule":{"mcc":["234"]}},"法国":{"code":"0033","rule":{"mcc":["208"]}},"俄罗斯":{"code":"007","rule":{"mcc":["250"]}},"印度":{"code":"0091","rule":{"mcc":["404"]}},"泰国":{"code":"0066","rule":{"mcc":["520"]}},"德国":{"code":"0049","rule":{"mcc":["262"]}}} -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/others/mfp.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/WeiboSDK.bundle/others/mfp.cer -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/libWeiboSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/SinaWeiboSDK/libWeiboSDK.a -------------------------------------------------------------------------------- /Pods/ShareSDK3/libraries/extends/WeChatSDK/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Pods/ShareSDK3/libraries/extends/WeChatSDK/libWeChatSDK.a -------------------------------------------------------------------------------- /Pods/ShareSDK3/readme: -------------------------------------------------------------------------------- 1 | ShareSDK简洁版文件包含: 2 | 3 | 1、libraries(ShareSDK类库),其中包含: 4 | (1)extends:第三方平台SDK。(不需要的平台的SDK可直接移除) 5 | 6 | (2)MOBFoundation.framework:基础功能框架。(必要) 7 | (3)ShareSDK.bundle:ShareSDK资源文件。(必要) 8 | (4)ShareSDK.framework:核心静态库。(必要) 9 | (5)ShareSDKConnector.framework:用于ShareSDK框架与外部框架连接的代理框架插件。使用第三方SDK时必要。 10 | (6)ShareSDKExtension.framework:对ShareSDK功能的扩展框架插件。目前主要提供第三方平台登录、一键分享、截屏分享、摇一摇分享等相关功能。需要使用以上功能时必要。 11 | 12 | (7)ShareSDKInterfaceAdapter.framework:ShareSDK v2.x对简洁版的接口兼容包。(建议直接使用简洁版接口,尽量不使用这个兼容包) 13 | 14 | (8)ShareSDKUI.bundle:分享菜单栏和分享编辑页面资源包。(如果自定义这些UI可直接移除) 15 | (9)ShareSDKUI.framework:分享菜单栏和分享编辑页面。(如果自定义这些UI可直接移除) 16 | 17 | 2、Demo(包含Objective-C、swift版示例Demo)。 18 | 3、doc(包含Objective-C、swift版集成文档和新功能介绍) 19 | 20 | 21 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #ifndef TARGET_OS_IOS 6 | #define TARGET_OS_IOS TARGET_OS_IPHONE 7 | #endif 8 | 9 | #ifndef TARGET_OS_WATCH 10 | #define TARGET_OS_WATCH 0 11 | #endif 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/AFNetworking" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/BmobSDK" "${PODS_ROOT}/Headers/Public/ShareSDK3" 3 | OTHER_LDFLAGS = -framework "CoreGraphics" -framework "MobileCoreServices" -framework "Security" -framework "SystemConfiguration" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods : NSObject 3 | @end 4 | @implementation PodsDummy_Pods 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/BmobSDK" "${PODS_ROOT}/ShareSDK3/libraries" "${PODS_ROOT}/ShareSDK3/libraries/extends/QQSDK" "${PODS_ROOT}/ShareSDK3/libraries" "${PODS_ROOT}/ShareSDK3/libraries" "${PODS_ROOT}/ShareSDK3/libraries" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/BmobSDK" "${PODS_ROOT}/Headers/Public/ShareSDK3" 4 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/ShareSDK3/libraries/extends/SinaWeiboSDK" $(inherited) "${PODS_ROOT}/ShareSDK3/libraries/extends/WeChatSDK" 5 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AFNetworking" -isystem "${PODS_ROOT}/Headers/Public/BmobSDK" -isystem "${PODS_ROOT}/Headers/Public/ShareSDK3" 6 | OTHER_LDFLAGS = $(inherited) -ObjC -l"AFNetworking" -l"WeChatSDK" -l"WeiboSDK" -l"icucore" -l"sqlite3" -l"stdc++" -l"z" -l"z.1.2.5" -framework "AVFoundation" -framework "AdSupport" -framework "BmobSDK" -framework "CFNetwork" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreTelephony" -framework "ImageIO" -framework "JavaScriptCore" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "Security" -framework "ShareSDK" -framework "ShareSDKConnector" -framework "ShareSDKExtension" -framework "ShareSDKUI" -framework "SystemConfiguration" -framework "TencentOpenAPI" -framework "UIKit" 7 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/BmobSDK" "${PODS_ROOT}/ShareSDK3/libraries" "${PODS_ROOT}/ShareSDK3/libraries/extends/QQSDK" "${PODS_ROOT}/ShareSDK3/libraries" "${PODS_ROOT}/ShareSDK3/libraries" "${PODS_ROOT}/ShareSDK3/libraries" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/BmobSDK" "${PODS_ROOT}/Headers/Public/ShareSDK3" 4 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/ShareSDK3/libraries/extends/SinaWeiboSDK" $(inherited) "${PODS_ROOT}/ShareSDK3/libraries/extends/WeChatSDK" 5 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AFNetworking" -isystem "${PODS_ROOT}/Headers/Public/BmobSDK" -isystem "${PODS_ROOT}/Headers/Public/ShareSDK3" 6 | OTHER_LDFLAGS = $(inherited) -ObjC -l"AFNetworking" -l"WeChatSDK" -l"WeiboSDK" -l"icucore" -l"sqlite3" -l"stdc++" -l"z" -l"z.1.2.5" -framework "AVFoundation" -framework "AdSupport" -framework "BmobSDK" -framework "CFNetwork" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreTelephony" -framework "ImageIO" -framework "JavaScriptCore" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "Security" -framework "ShareSDK" -framework "ShareSDKConnector" -framework "ShareSDKExtension" -framework "ShareSDKUI" -framework "SystemConfiguration" -framework "TencentOpenAPI" -framework "UIKit" 7 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/1.png -------------------------------------------------------------------------------- /Screenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/10.png -------------------------------------------------------------------------------- /Screenshots/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/11.png -------------------------------------------------------------------------------- /Screenshots/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/12.png -------------------------------------------------------------------------------- /Screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/2.png -------------------------------------------------------------------------------- /Screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/3.png -------------------------------------------------------------------------------- /Screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/4.png -------------------------------------------------------------------------------- /Screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/5.png -------------------------------------------------------------------------------- /Screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/6.png -------------------------------------------------------------------------------- /Screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/7.png -------------------------------------------------------------------------------- /Screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/8.png -------------------------------------------------------------------------------- /Screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyufeng1991/iOS-Oncenote/58402378bfed9ec5094f624de663ad7b8a8fd538/Screenshots/9.png --------------------------------------------------------------------------------