mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
Dactyloidae iOS initial commit
This commit is contained in:
parent
daa6179d22
commit
7154a0497e
2123 changed files with 197052 additions and 0 deletions
193
mobile/ios/ThirdParty/Leanplum/Leanplum.framework/Headers/LPInbox.h
vendored
Normal file
193
mobile/ios/ThirdParty/Leanplum/Leanplum.framework/Headers/LPInbox.h
vendored
Normal file
|
|
@ -0,0 +1,193 @@
|
|||
//
|
||||
// LPInbox.h
|
||||
// Leanplum
|
||||
//
|
||||
// Created by Aleksandar Gyorev on 05/08/15.
|
||||
// Copyright (c) 2015 Leanplum, Inc. All rights reserved.
|
||||
//
|
||||
// Licensed to the Apache Software Foundation (ASF) under one
|
||||
// or more contributor license agreements. See the NOTICE file
|
||||
// distributed with this work for additional information
|
||||
// regarding copyright ownership. The ASF licenses this file
|
||||
// to you under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing,
|
||||
// software distributed under the License is distributed on an
|
||||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#pragma mark - LPInboxMessage interface
|
||||
|
||||
@interface LPInboxMessage : NSObject <NSCoding>
|
||||
|
||||
#pragma mark - LPInboxMessage methods
|
||||
|
||||
/**
|
||||
* Returns the message identifier of the inbox message.
|
||||
*/
|
||||
- (NSString *)messageId;
|
||||
|
||||
/**
|
||||
* Returns the title of the inbox message.
|
||||
*/
|
||||
- (NSString *)title;
|
||||
|
||||
/**
|
||||
* Returns the subtitle of the inbox message.
|
||||
*/
|
||||
- (NSString *)subtitle;
|
||||
|
||||
/**
|
||||
* Returns the image path of the inbox message. Can be nil.
|
||||
* Use with [UIImage contentsOfFile:].
|
||||
*/
|
||||
- (NSString *)imageFilePath;
|
||||
|
||||
/**
|
||||
* Returns the image URL of the inbox message.
|
||||
* You can safely use this with prefetching enabled.
|
||||
* It will return the file URL path instead if the image is in cache.
|
||||
*/
|
||||
- (NSURL *)imageURL;
|
||||
|
||||
/**
|
||||
* Returns the data of the inbox message. Advanced use only.
|
||||
*/
|
||||
- (NSDictionary *)data;
|
||||
|
||||
/**
|
||||
* Returns the delivery timestamp of the inbox message.
|
||||
*/
|
||||
- (NSDate *)deliveryTimestamp;
|
||||
|
||||
/**
|
||||
* Return the expiration timestamp of the inbox message.
|
||||
*/
|
||||
- (NSDate *)expirationTimestamp;
|
||||
|
||||
/**
|
||||
* Returns YES if the inbox message is read.
|
||||
*/
|
||||
- (BOOL)isRead;
|
||||
|
||||
/**
|
||||
* Read the inbox message, marking it as read and invoking its open action.
|
||||
*/
|
||||
- (void)read;
|
||||
|
||||
/**
|
||||
* Remove the inbox message from the inbox.
|
||||
*/
|
||||
- (void)remove;
|
||||
|
||||
@end
|
||||
|
||||
#pragma mark - LPInbox interface
|
||||
|
||||
/**
|
||||
* This block is used when you define a callback.
|
||||
*/
|
||||
typedef void (^LeanplumInboxChangedBlock)(void);
|
||||
typedef void (^LeanplumInboxSyncedBlock)(BOOL success);
|
||||
|
||||
@interface LPInbox : NSObject
|
||||
|
||||
#pragma mark - LPInbox methods
|
||||
|
||||
/**
|
||||
* Returns the number of all inbox messages on the device.
|
||||
*/
|
||||
- (NSUInteger)count;
|
||||
|
||||
/**
|
||||
* Returns the number of the unread inbox messages on the device.
|
||||
*/
|
||||
- (NSUInteger)unreadCount;
|
||||
|
||||
/**
|
||||
* Returns the identifiers of all inbox messages on the device sorted in ascending
|
||||
* chronological order, i.e. the id of the oldest message is the first one, and the most
|
||||
* recent one is the last one in the array.
|
||||
*/
|
||||
- (NSArray *)messagesIds;
|
||||
|
||||
/**
|
||||
* Returns an array containing all of the inbox messages (as LPInboxMessage objects)
|
||||
* on the device, sorted in ascending chronological order, i.e. the oldest message is the
|
||||
* first one, and the most recent one is the last one in the array.
|
||||
*/
|
||||
- (NSArray *)allMessages;
|
||||
|
||||
/**
|
||||
* Returns an array containing all of the unread inbox messages on the device, sorted
|
||||
* in ascending chronological order, i.e. the oldest message is the first one, and the
|
||||
* most recent one is the last one in the array.
|
||||
*/
|
||||
- (NSArray *)unreadMessages;
|
||||
|
||||
/**
|
||||
* Returns the inbox messages associated with the given messageId identifier.
|
||||
*/
|
||||
- (LPInboxMessage *)messageForId:(NSString *)messageId;
|
||||
|
||||
/**
|
||||
* Call this method if you don't want Inbox images to be prefetched.
|
||||
* Useful if you only want to deal with image URL.
|
||||
*/
|
||||
- (void)disableImagePrefetching;
|
||||
|
||||
/**
|
||||
* Block to call when the inbox receive new values from the server.
|
||||
* This will be called on start, and also later on if the user is in an experiment
|
||||
* that can update in realtime.
|
||||
*/
|
||||
- (void)onChanged:(LeanplumInboxChangedBlock)block;
|
||||
|
||||
/**
|
||||
* Block to call when forceContentUpdate was called.
|
||||
* Returns true if syncing was successful.
|
||||
* Note: use onChanged: for UI.
|
||||
*/
|
||||
- (void)onForceContentUpdate:(LeanplumInboxSyncedBlock)block;
|
||||
|
||||
/**
|
||||
@{
|
||||
* Adds a responder to be executed when an event happens.
|
||||
* Uses NSInvocation instead of blocks.
|
||||
* @see [Leanplum onStartResponse:]
|
||||
*/
|
||||
- (void)addInboxChangedResponder:(id)responder withSelector:(SEL)selector;
|
||||
- (void)removeInboxChangedResponder:(id)responder withSelector:(SEL)selector;
|
||||
/**@}*/
|
||||
|
||||
@end
|
||||
|
||||
#pragma mark - LPNewsfeed for backwards compatibility
|
||||
@interface LPNewsfeedMessage : LPInboxMessage
|
||||
|
||||
@end
|
||||
|
||||
typedef void (^LeanplumNewsfeedChangedBlock)(void);
|
||||
|
||||
@interface LPNewsfeed : NSObject
|
||||
|
||||
+ (LPNewsfeed *)sharedState;
|
||||
- (NSUInteger)count;
|
||||
- (NSUInteger)unreadCount;
|
||||
- (NSArray *)messagesIds;
|
||||
- (NSArray *)allMessages;
|
||||
- (NSArray *)unreadMessages;
|
||||
- (void)onChanged:(LeanplumNewsfeedChangedBlock)block;
|
||||
- (LPNewsfeedMessage *)messageForId:(NSString *)messageId;
|
||||
- (void)addNewsfeedChangedResponder:(id)responder withSelector:(SEL)selector __attribute__((deprecated));
|
||||
- (void)removeNewsfeedChangedResponder:(id)responder withSelector:(SEL)selector __attribute__((deprecated));
|
||||
|
||||
@end
|
||||
Loading…
Add table
Add a link
Reference in a new issue