├── .DS_Store ├── .gitignore ├── HHHPointInsde ├── HHHPointInsde.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── HHHPointInsde │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── UIView+PointInside.h │ ├── UIView+PointInside.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── HHHTextField ├── HHHTextField.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── HHHTextField │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── HHHTextField.h │ ├── HHHTextField.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── LICENSE ├── MarkDown └── UITextField输入时文字下移解决方案.md ├── README.md ├── SFLabel ├── .DS_Store ├── SFLabel.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SFLabel │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SFLabel.h │ ├── SFLabel.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── SFTableViewFooterView ├── Podfile ├── Podfile.lock ├── Pods │ ├── AFNetworking │ │ ├── AFNetworking │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFHTTPSessionManager.m │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFSecurityPolicy.m │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLRequestSerialization.m │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLResponseSerialization.m │ │ │ ├── AFURLSessionManager.h │ │ │ └── AFURLSessionManager.m │ │ ├── LICENSE │ │ ├── README.md │ │ └── UIKit+AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFAutoPurgingImageCache.m │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFImageDownloader.m │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.m │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIActivityIndicatorView+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 │ ├── Headers │ │ ├── Private │ │ │ └── AFNetworking │ │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ │ ├── AFHTTPSessionManager.h │ │ │ │ ├── AFImageDownloader.h │ │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ │ ├── AFNetworking.h │ │ │ │ ├── AFSecurityPolicy.h │ │ │ │ ├── AFURLRequestSerialization.h │ │ │ │ ├── AFURLResponseSerialization.h │ │ │ │ ├── AFURLSessionManager.h │ │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ │ ├── UIButton+AFNetworking.h │ │ │ │ ├── UIImage+AFNetworking.h │ │ │ │ ├── UIImageView+AFNetworking.h │ │ │ │ ├── UIKit+AFNetworking.h │ │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ │ └── UIWebView+AFNetworking.h │ │ └── Public │ │ │ └── AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ └── AFNetworking.xcconfig │ │ └── Pods-SFTableViewFooterView │ │ ├── Pods-SFTableViewFooterView-acknowledgements.markdown │ │ ├── Pods-SFTableViewFooterView-acknowledgements.plist │ │ ├── Pods-SFTableViewFooterView-dummy.m │ │ ├── Pods-SFTableViewFooterView-frameworks.sh │ │ ├── Pods-SFTableViewFooterView-resources.sh │ │ ├── Pods-SFTableViewFooterView.debug.xcconfig │ │ └── Pods-SFTableViewFooterView.release.xcconfig ├── SFTableViewFooterView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── SFTableViewFooterView.xcworkspace │ └── contents.xcworkspacedata └── SFTableViewFooterView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SFCellFooterView.h │ ├── SFCellFooterView.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── SFTextLinkView └── SFTextLinkView │ ├── SFTextLinkView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── SFTextLinkView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SFTextLinkView.h │ ├── SFTextLinkView.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── SFUITextFieldInputSpaceFromRight ├── .DS_Store ├── SFUITextFieldInputSpaceFromRight.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SFUITextFieldInputSpaceFromRight │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SFTextField.h │ ├── SFTextField.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── images ├── .DS_Store ├── HHHTextField ├── TextField结构.png ├── masksToBounds.gif ├── nonmasksToBounds.gif └── 横竖屏.gif ├── SFLabel ├── 1cc890735f14dcca204bcd82326b29db.jpg ├── QQ20160701-0@2x.png └── QQ20160701-1@2x.png └── SFUITextFieldInputSpaceFromRight ├── .DS_Store ├── 1-问题陈述.gif ├── 2代理效果演示.gif ├── 3自定义效果演示.gif └── 4仍存在的问题.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/.gitignore -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/AppDelegate.h -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/AppDelegate.m -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/Info.plist -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/UIView+PointInside.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/UIView+PointInside.h -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/UIView+PointInside.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/UIView+PointInside.m -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/ViewController.h -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/ViewController.m -------------------------------------------------------------------------------- /HHHPointInsde/HHHPointInsde/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHPointInsde/HHHPointInsde/main.m -------------------------------------------------------------------------------- /HHHTextField/HHHTextField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HHHTextField/HHHTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/AppDelegate.h -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/AppDelegate.m -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/HHHTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/HHHTextField.h -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/HHHTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/HHHTextField.m -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/Info.plist -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/ViewController.h -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/ViewController.m -------------------------------------------------------------------------------- /HHHTextField/HHHTextField/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/HHHTextField/HHHTextField/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/LICENSE -------------------------------------------------------------------------------- /MarkDown/UITextField输入时文字下移解决方案.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/MarkDown/UITextField输入时文字下移解决方案.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/README.md -------------------------------------------------------------------------------- /SFLabel/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/.DS_Store -------------------------------------------------------------------------------- /SFLabel/SFLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SFLabel/SFLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SFLabel/SFLabel/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/AppDelegate.h -------------------------------------------------------------------------------- /SFLabel/SFLabel/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/AppDelegate.m -------------------------------------------------------------------------------- /SFLabel/SFLabel/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SFLabel/SFLabel/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SFLabel/SFLabel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SFLabel/SFLabel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/Info.plist -------------------------------------------------------------------------------- /SFLabel/SFLabel/SFLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/SFLabel.h -------------------------------------------------------------------------------- /SFLabel/SFLabel/SFLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/SFLabel.m -------------------------------------------------------------------------------- /SFLabel/SFLabel/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/ViewController.h -------------------------------------------------------------------------------- /SFLabel/SFLabel/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/ViewController.m -------------------------------------------------------------------------------- /SFLabel/SFLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFLabel/SFLabel/main.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Podfile -------------------------------------------------------------------------------- /SFTableViewFooterView/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Podfile.lock -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Manifest.lock -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView-acknowledgements.markdown -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView-acknowledgements.plist -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView-dummy.m -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView-frameworks.sh -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView-resources.sh -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView.debug.xcconfig -------------------------------------------------------------------------------- /SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/Pods/Target Support Files/Pods-SFTableViewFooterView/Pods-SFTableViewFooterView.release.xcconfig -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/AppDelegate.h -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/AppDelegate.m -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/Info.plist -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/SFCellFooterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/SFCellFooterView.h -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/SFCellFooterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/SFCellFooterView.m -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/ViewController.h -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/ViewController.m -------------------------------------------------------------------------------- /SFTableViewFooterView/SFTableViewFooterView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTableViewFooterView/SFTableViewFooterView/main.m -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/AppDelegate.h -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/AppDelegate.m -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/Info.plist -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/SFTextLinkView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/SFTextLinkView.h -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/SFTextLinkView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/SFTextLinkView.m -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/ViewController.h -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/ViewController.m -------------------------------------------------------------------------------- /SFTextLinkView/SFTextLinkView/SFTextLinkView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFTextLinkView/SFTextLinkView/SFTextLinkView/main.m -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/.DS_Store -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/AppDelegate.h -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/AppDelegate.m -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/Info.plist -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/SFTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/SFTextField.h -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/SFTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/SFTextField.m -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/ViewController.h -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/ViewController.m -------------------------------------------------------------------------------- /SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/SFUITextFieldInputSpaceFromRight/SFUITextFieldInputSpaceFromRight/main.m -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/HHHTextField/TextField结构.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/HHHTextField/TextField结构.png -------------------------------------------------------------------------------- /images/HHHTextField/masksToBounds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/HHHTextField/masksToBounds.gif -------------------------------------------------------------------------------- /images/HHHTextField/nonmasksToBounds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/HHHTextField/nonmasksToBounds.gif -------------------------------------------------------------------------------- /images/HHHTextField/横竖屏.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/HHHTextField/横竖屏.gif -------------------------------------------------------------------------------- /images/SFLabel/1cc890735f14dcca204bcd82326b29db.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/SFLabel/1cc890735f14dcca204bcd82326b29db.jpg -------------------------------------------------------------------------------- /images/SFLabel/QQ20160701-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/SFLabel/QQ20160701-0@2x.png -------------------------------------------------------------------------------- /images/SFLabel/QQ20160701-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/SFLabel/QQ20160701-1@2x.png -------------------------------------------------------------------------------- /images/SFUITextFieldInputSpaceFromRight/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/SFUITextFieldInputSpaceFromRight/.DS_Store -------------------------------------------------------------------------------- /images/SFUITextFieldInputSpaceFromRight/1-问题陈述.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/SFUITextFieldInputSpaceFromRight/1-问题陈述.gif -------------------------------------------------------------------------------- /images/SFUITextFieldInputSpaceFromRight/2代理效果演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/SFUITextFieldInputSpaceFromRight/2代理效果演示.gif -------------------------------------------------------------------------------- /images/SFUITextFieldInputSpaceFromRight/3自定义效果演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/SFUITextFieldInputSpaceFromRight/3自定义效果演示.gif -------------------------------------------------------------------------------- /images/SFUITextFieldInputSpaceFromRight/4仍存在的问题.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoaihhh/problemsOfiOS/HEAD/images/SFUITextFieldInputSpaceFromRight/4仍存在的问题.gif --------------------------------------------------------------------------------