|
LuxChat
2.0
Instant messenger for iOS
|
#import <Parse.h>
Class Methods | |
| (void) | + setApplicationId:clientKey: |
More... | |
| (void) | + initializeWithConfiguration: |
| (nullable ParseClientConfiguration *) | + currentConfiguration |
| (NSString *) | + getApplicationId |
| (nullable NSString *) | + getClientKey |
| (void) | + PF_TV_UNAVAILABLE |
More... | |
| (BOOL) | + PF_TV_UNAVAILABLE |
| (void) | + enableDataSharingWithApplicationGroupIdentifier: |
More... | |
| (void) | + enableDataSharingWithApplicationGroupIdentifier:containingApplication: |
| (NSString *) | + PF_TV_UNAVAILABLE |
| (NSString *) | + PF_TV_UNAVAILABLE |
| (void) | + setLogLevel: |
More... | |
| (PFLogLevel) | + logLevel |
Copyright (c) 2015-present, Parse, LLC. All rights reserved.
This source code is licensed under the BSD-style license found in the LICENSE file in the root directory of this source tree. An additional grant of patent rights can be found in the PATENTS file in the same directory. The Parse class contains static functions that handle global configuration for the Parse framework.
| + (nullable ParseClientConfiguration *) currentConfiguration |
Gets the current configuration in use by the Parse SDK.
| + (void) enableDataSharingWithApplicationGroupIdentifier: | ("Use `enableDataSharingWithApplicationGroupIdentifier:containingApplication:`.") | PF_TV_UNAVAILABLE |
Enables data sharing with an application group identifier.
After enabling - Local Datastore, PFUser.+currentUser, PFInstallation.+currentInstallation and all eventually commands are going to be available to every application/extension in a group that have the same Parse applicationId.
+setApplicationId:clientKey:.| groupIdentifier | Application Group Identifier to share data with. |
| + (void) enableDataSharingWithApplicationGroupIdentifier: | (NSString *) | groupIdentifier | |
| containingApplication: | (NSString *) | PF_TV_UNAVAILABLE | |
Enables data sharing with an application group identifier.
After enabling - Local Datastore, PFUser.+currentUser, PFInstallation.+currentInstallation and all eventually commands are going to be available to every application/extension in a group that have the same Parse applicationId.
+setApplicationId:clientKey:. This method can only be used by application extensions.| groupIdentifier | Application Group Identifier to share data with. |
| bundleIdentifier | Bundle identifier of the containing application. |
| + (NSString *) getApplicationId |
The current application id that was used to configure Parse framework.
| + (nullable NSString *) getClientKey |
The current client key that was used to configure Parse framework.
| + (void) initializeWithConfiguration: | (ParseClientConfiguration *) | configuration |
Sets the configuration to be used for the Parse SDK.
| configuration | The new configuration to set for the SDK. |
| + (PFLogLevel) logLevel |
Log level that will be displayed.
By default:
PFLogLevelNonePFLogLevelWarningPFLogLevel value. | + (NSString *) PF_TV_UNAVAILABLE |
Application Group Identifier for Data Sharing.
NSString value if data sharing is enabled, otherwise nil. | + (void) PF_TV_UNAVAILABLE |
Enable pinning in your application. This must be called before your application can use pinning. The recommended way is to call this method before +setApplicationId:clientKey:.
| + (NSString *) PF_TV_UNAVAILABLE |
Containing application bundle identifier for Data Sharing.
NSString value if data sharing is enabled, otherwise nil. | + (BOOL) PF_TV_UNAVAILABLE |
Flag that indicates whether Local Datastore is enabled.
YES if Local Datastore is enabled, otherwise NO. | + (void) setApplicationId: | (NSString *) | applicationId | |
| clientKey: | (NSString *) | clientKey | |
| + (void) setLogLevel: | (PFLogLevel) | logLevel |
Sets the level of logging to display.
By default:
PFLogLevelNonePFLogLevelWarning| logLevel | Log level to set. |
1.8.9.1