![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/abdullahselek/ContactsWrapper
Contacts wrapper for iOS 9 or upper with Objective-C. For the information translated to Russian, take a look at this link.
iOS 9.0+
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate ContactsWrapper into your Xcode project using CocoaPods, specify it in your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target '<Your Target Name>' do
pod 'ContactsWrapper', '1.0.2'
end
Then, run the following command:
$ pod install
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
brew update
brew install carthage
To integrate ContactsWrapper into your Xcode project using Carthage, specify it in your Cartfile:
github "abdullahselek/ContactsWrapper" ~> 1.0.2
Run carthage update to build the framework and drag the built ContactsWrapper.framework into your Xcode project.
add "Privacy - Contacts Usage Description" to your application .plist file
- (void)getContactsWithContainerId:(nullable NSString *)containerId completionBlock:(void (^)(NSArray<CNContact *> * _Nullable contacts, NSError * _Nullable error))completionBlock;
- (void)getContactsWithKeys:(NSArray<id<CNKeyDescriptor>> *)keys
containerId:(nullable NSString *)containerId
completionBlock:(void (^)(NSArray<CNContact *> * _Nullable contacts, NSError * _Nullable error))completionBlock
- (void)saveContact:(CNMutableContact *)contact
containerId:(nullable NSString *)containerId
completionBlock:(void (^)(bool isSuccess, NSError * _Nullable error))completionBlock
- (void)getContactsWithGivenName:(NSString *)givenName
completionBlock:(void (^)(NSArray<CNContact *> * _Nullable contacts, NSError * _Nullable error))completionBlock
- (void)getContactsWithGivenName:(NSString *)givenName
familyName:(NSString *)familyName
completionBlock:(void (^)(NSArray<CNContact *> * _Nullable contacts, NSError * _Nullable error))completionBlock
- (void)updateContact:(CNMutableContact *)contact
completionBlock:(void (^)(bool isSuccess, NSError * _Nullable error))completionBlock
- (void)getContactsWithEmailAddress:(NSString *)emailAddress
completionBlock:(void (^)(NSArray<CNContact *> * _Nullable contacts, NSError * _Nullable error))completionBlock
- (void)deleteContact:(CNMutableContact *)contact
completionBlock:(void (^)(bool isSuccess, NSError * _Nullable error))completionBlock
- (void)addGroup:(CNMutableGroup *)group
containerId:(nullable NSString *)containerId
completionBlock:(void (^)(bool isSuccess, NSError * _Nullable error))completionBlock
- (void)addGroupMember:(CNContact *)contact
group:(CNGroup *)group
completionBlock:(void (^)(bool isSuccess, NSError * _Nullable error))completionBlock
- (void)addGroupMembers:(NSArray<CNMutableContact *> *)contacts
group:(CNGroup *)group
completionBlock:(void (^)(BOOL isSuccess, NSError * _Nullable error))completionBlock
- (void)getGroupsWithContainerId:(nullable NSString *)containerId completionBlock:(void (^)(NSArray<CNGroup *> * _Nullable groups, NSError * _Nullable error))completionBlock
- (void)deleteGroup:(CNMutableGroup *)group
completionBlock:(void (^)(bool isSuccess, NSError * _Nullable error))completionBlock;
- (void)updateGroup:(CNMutableGroup *)group
completionBlock:(void (^)(bool isSuccess, NSError * _Nullable error))completionBlock;
- (void)getContainers:(void (^)(NSArray<CNContainer *> * _Nullable containers, NSError * _Nullable error))completionBlock
The MIT License (MIT)
Copyright (c) 2016 Abdullah Selek
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.