-
Notifications
You must be signed in to change notification settings - Fork 4
iOS Knowledge Notes
Jinlian(Sunny) Wang edited this page Apr 30, 2019
·
11 revisions
- Building a Simple Share Extension in iOS 8 App - ImageUploader
- How-to Build an iOS Share Extension in Swift - Post URL
- Building Action Extensions in iOS 8 - Bookmarker
- (void)parseXMLFileAtData:(NSData *)webData
{
NSXMLParser* dataParser = [[NSXMLParser alloc] initWithData:webData];
[dataParser setDelegate:self];
[dataParser setShouldProcessNamespaces:NO];
[dataParser setShouldReportNamespacePrefixes:NO];
[dataParser setShouldResolveExternalEntities:NO];
[dataParser parse];
}
2)Using NSURLProtocol for Injecting Test Data
4)iOS WebView remote html with local image files
5)square/objc-mocktail on GitHub
6)kif-framework/AMYServer on GibHub
- Fastlane Primer: Set up Ruby Envirments for Fastlane and Cocoapods
- Adding settings to your iOS app How to add app settings to your app and monitor and handle value changes.
- REST Client in Swift with Promises Love that in this article how to construct a response structure containing both error response body(APIError) and normal response body(APIResponse) using Swift Generic. It uses ObjectMapper and PromiseKit as a great design pattern; wish to have more clarification/details over how AlamoFire is used.
- How to write Networking Layer in Swift (2nd version) A full blown version of networking layer implementation. It may be overblown with too many abstractions, though giving a good idea on how we can abstract each entities in a networking context for iOS application.
- TestFlight Tutorial: iOS Beta Testing
- App Store Connect Help - Beta Testing with TestFlight