Skip to content

Commit 4d74797

Browse files
author
Edward Smith
committed
Release 0.22.3.
1 parent a38646f commit 4d74797

File tree

4 files changed

+56
-4
lines changed

4 files changed

+56
-4
lines changed

Branch.framework/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.22.2</string>
20+
<string>0.22.3</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.22.2</string>
24+
<string>0.22.3</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>NSHumanReadableCopyright</key>

Branch.framework/Versions/A/Branch

-48 Bytes
Binary file not shown.
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
//
2+
// BranchView.h
3+
// Branch-TestBed
4+
//
5+
// Created by Sojan P.R. on 3/4/16.
6+
// Copyright © 2016 Branch Metrics. All rights reserved.
7+
//
8+
9+
#if __has_feature(modules)
10+
@import Foundation;
11+
#else
12+
#import <Foundation/Foundation.h>
13+
#endif
14+
15+
@interface BranchView : NSObject
16+
//-------- properties-------------------//
17+
/**
18+
Unique ID for this Branch view
19+
*/
20+
@property (strong, nonatomic) NSString *branchViewID;
21+
/**
22+
User or Branch action associated with the Branch view
23+
*/
24+
@property (strong, nonatomic) NSString *branchViewAction;
25+
/**
26+
Number of times this Branch view can be used
27+
*/
28+
@property (nonatomic) NSInteger numOfUse;
29+
/**
30+
Web url to for showing html content for the Branch View
31+
*/
32+
@property (strong, nonatomic) NSString *webUrl;
33+
/**
34+
Html content for loading the web view
35+
*/
36+
@property (strong, nonatomic) NSString *webHtml;
37+
38+
//---------- Methods---------------//
39+
/**
40+
Initialises Branch View with the given dictionary
41+
*/
42+
- (id)initWithBranchView:(NSDictionary *)branchViewDict andActionName:(NSString *)actionName;
43+
/**
44+
Check Branch view for usage limit
45+
*/
46+
- (BOOL)isAvailable;
47+
/**
48+
update the usage count for this Branch view
49+
*/
50+
- (void)updateUsageCount;
51+
52+
@end

checksum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#checksum for Branch-iOS-SDK found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-SDK.zip
2-
1f54deb4a0da9c4c94c256b4ceed8bffd91d74fe Branch-iOS-SDK.zip
2+
9910655b7a0ece0f6ce0a004bde6902d9277208f Branch-iOS-SDK.zip
33
#checksum for Branch-iOS-TestBed found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-TestBed.zip
4-
9232b0c782d2061ab41496daa7b1f0c26b03d078 Branch-iOS-TestBed.zip
4+
7ee35f0af6ad3da68f44a82e662904f576cd0a5a Branch-iOS-TestBed.zip

0 commit comments

Comments
 (0)