Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.1.18 #56

Merged
merged 2 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ViafouraCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'ViafouraCore'
s.version = '1.1.17'
s.version = '1.1.18'
s.swift_versions = ['5.0']
s.summary = 'Viafoura SDK'
s.description = 'This SDK allows you to integrate Viafoura tools into your iOS app.'
Expand Down
10 changes: 5 additions & 5 deletions ViafouraSDK.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,32 @@
<key>BinaryPath</key>
<string>ViafouraSDK.framework/ViafouraSDK</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>ViafouraSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>ViafouraSDK.framework/ViafouraSDK</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>ViafouraSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
@import CoreData;
@import CoreFoundation;
@import Foundation;
@import ObjectiveC;
@import UIKit;
#endif

Expand Down Expand Up @@ -432,6 +431,7 @@ SWIFT_CLASS("_TtC11ViafouraSDK32VFCarouselTrendingViewController")




@class UICollectionView;
@class NSIndexPath;
@class UICollectionViewCell;
Expand All @@ -441,7 +441,6 @@ SWIFT_CLASS("_TtC11ViafouraSDK32VFCarouselTrendingViewController")
- (UICollectionViewCell * _Nonnull)collectionView:(UICollectionView * _Nonnull)collectionView cellForItemAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT;
@end


@class UICollectionViewLayout;

@interface VFCarouselTrendingViewController (SWIFT_EXTENSION(ViafouraSDK)) <UICollectionViewDelegateFlowLayout>
Expand Down Expand Up @@ -663,7 +662,6 @@ SWIFT_CLASS("_TtC11ViafouraSDK20VFPollViewController")
@end



@class UITextField;

@interface VFPollViewController (SWIFT_EXTENSION(ViafouraSDK)) <UITextFieldDelegate>
Expand All @@ -672,6 +670,7 @@ SWIFT_CLASS("_TtC11ViafouraSDK20VFPollViewController")




SWIFT_CLASS("_TtC11ViafouraSDK23VFPoweredByViafouraView")
@interface VFPoweredByViafouraView : UIView
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
Expand Down Expand Up @@ -722,14 +721,14 @@ SWIFT_CLASS("_TtC11ViafouraSDK23VFProfileViewController")




@class UIScrollView;

@interface VFProfileViewController (SWIFT_EXTENSION(ViafouraSDK)) <UIScrollViewDelegate>
- (void)scrollViewDidScroll:(UIScrollView * _Nonnull)scrollView;
@end



@class UIImagePickerController;

@interface VFProfileViewController (SWIFT_EXTENSION(ViafouraSDK)) <UIImagePickerControllerDelegate, UINavigationControllerDelegate>
Expand Down Expand Up @@ -852,31 +851,24 @@ SWIFT_CLASS("_TtC11ViafouraSDK32VFVerticalTrendingViewController")


@interface VFVerticalTrendingViewController (SWIFT_EXTENSION(ViafouraSDK))
- (void)observeValueForKeyPath:(NSString * _Nullable)keyPath ofObject:(id _Nullable)object change:(NSDictionary<NSKeyValueChangeKey, id> * _Nullable)change context:(void * _Nullable)context;
- (void)didMoveToParentViewController:(UIViewController * _Nullable)parent;
@end



@interface VFVerticalTrendingViewController (SWIFT_EXTENSION(ViafouraSDK))
- (void)didMoveToParentViewController:(UIViewController * _Nullable)parent;
- (void)observeValueForKeyPath:(NSString * _Nullable)keyPath ofObject:(id _Nullable)object change:(NSDictionary<NSKeyValueChangeKey, id> * _Nullable)change context:(void * _Nullable)context;
@end






@interface VFVerticalTrendingViewController (SWIFT_EXTENSION(ViafouraSDK)) <UITableViewDataSource, UITableViewDelegate>
- (NSInteger)numberOfSectionsInTableView:(UITableView * _Nonnull)tableView SWIFT_WARN_UNUSED_RESULT;
- (CGFloat)tableView:(UITableView * _Nonnull)tableView heightForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT;
- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT;
- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT;
- (void)tableView:(UITableView * _Nonnull)tableView willDisplayCell:(UITableViewCell * _Nonnull)cell forRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath;
@end


SWIFT_CLASS("_TtC11ViafouraSDK11ViafouraSDK")
@interface ViafouraSDK : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end


Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -21525,50 +21525,6 @@
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
"name": "tableView",
"printedName": "tableView(_:willDisplay:forRowAt:)",
"children": [
{
"kind": "TypeNominal",
"name": "Void",
"printedName": "()"
},
{
"kind": "TypeNominal",
"name": "UITableView",
"printedName": "UIKit.UITableView",
"usr": "c:objc(cs)UITableView"
},
{
"kind": "TypeNominal",
"name": "UITableViewCell",
"printedName": "UIKit.UITableViewCell",
"usr": "c:objc(cs)UITableViewCell"
},
{
"kind": "TypeNominal",
"name": "IndexPath",
"printedName": "Foundation.IndexPath",
"usr": "s:10Foundation9IndexPathV"
}
],
"declKind": "Func",
"usr": "c:@CM@ViafouraSDK@objc(cs)VFVerticalTrendingViewController(im)tableView:willDisplayCell:forRowAtIndexPath:",
"mangledName": "$s11ViafouraSDK32VFVerticalTrendingViewControllerC05tableE0_11willDisplay8forRowAtySo07UITableE0C_So0mE4CellC10Foundation9IndexPathVtF",
"moduleName": "ViafouraSDK",
"objc_name": "tableView:willDisplayCell:forRowAtIndexPath:",
"declAttributes": [
"Dynamic",
"ObjC",
"Preconcurrency",
"Custom",
"AccessControl"
],
"isFromExtension": true,
"funcSelfKind": "NonMutating"
},
{
"kind": "Function",
"name": "generateAd",
Expand Down Expand Up @@ -35005,47 +34961,16 @@
"AccessControl"
],
"funcSelfKind": "NonMutating"
},
{
"kind": "Constructor",
"name": "init",
"printedName": "init()",
"children": [
{
"kind": "TypeNominal",
"name": "ViafouraSDK",
"printedName": "ViafouraSDK.ViafouraSDK",
"usr": "c:@M@ViafouraSDK@objc(cs)ViafouraSDK"
}
],
"declKind": "Constructor",
"usr": "c:@M@ViafouraSDK@objc(cs)ViafouraSDK(im)init",
"mangledName": "$s11ViafouraSDKAACABycfc",
"moduleName": "ViafouraSDK",
"overriding": true,
"implicit": true,
"objc_name": "init",
"declAttributes": [
"Dynamic",
"ObjC",
"Override"
],
"init_kind": "Designated"
}
],
"declKind": "Class",
"usr": "c:@M@ViafouraSDK@objc(cs)ViafouraSDK",
"usr": "s:11ViafouraSDKAAC",
"mangledName": "$s11ViafouraSDKAAC",
"moduleName": "ViafouraSDK",
"declAttributes": [
"AccessControl",
"ObjC"
],
"superclassUsr": "c:objc(cs)NSObject",
"inheritsConvenienceInitializers": true,
"superclassNames": [
"ObjectiveC.NSObject"
"AccessControl"
],
"hasMissingDesignatedInitializers": true,
"conformances": [
{
"kind": "Conformance",
Expand All @@ -35060,55 +34985,6 @@
"printedName": "Escapable",
"usr": "s:s9EscapableP",
"mangledName": "$ss9EscapableP"
},
{
"kind": "Conformance",
"name": "Equatable",
"printedName": "Equatable",
"usr": "s:SQ",
"mangledName": "$sSQ"
},
{
"kind": "Conformance",
"name": "Hashable",
"printedName": "Hashable",
"usr": "s:SH",
"mangledName": "$sSH"
},
{
"kind": "Conformance",
"name": "CVarArg",
"printedName": "CVarArg",
"usr": "s:s7CVarArgP",
"mangledName": "$ss7CVarArgP"
},
{
"kind": "Conformance",
"name": "_KeyValueCodingAndObservingPublishing",
"printedName": "_KeyValueCodingAndObservingPublishing",
"usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
"mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
},
{
"kind": "Conformance",
"name": "_KeyValueCodingAndObserving",
"printedName": "_KeyValueCodingAndObserving",
"usr": "s:10Foundation27_KeyValueCodingAndObservingP",
"mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
},
{
"kind": "Conformance",
"name": "CustomStringConvertible",
"printedName": "CustomStringConvertible",
"usr": "s:s23CustomStringConvertibleP",
"mangledName": "$ss23CustomStringConvertibleP"
},
{
"kind": "Conformance",
"name": "CustomDebugStringConvertible",
"printedName": "CustomDebugStringConvertible",
"usr": "s:s28CustomDebugStringConvertibleP",
"mangledName": "$ss28CustomDebugStringConvertibleP"
}
]
},
Expand Down Expand Up @@ -72352,24 +72228,17 @@
"length": 10,
"value": "\"Trending\""
},
{
"filePath": "\/Users\/runner\/work\/sdk-ios-core\/sdk-ios-core\/Viafoura SDK\/ViafouraSDK\/ViewControllers\/TrendingConversations\/VFVerticalTrendingViewController.swift",
"kind": "FloatLiteral",
"offset": 964,
"length": 4,
"value": "80.0"
},
{
"filePath": "\/Users\/runner\/work\/sdk-ios-core\/sdk-ios-core\/Viafoura SDK\/ViafouraSDK\/ViewControllers\/TrendingConversations\/VFVerticalTrendingViewController.swift",
"kind": "StringLiteral",
"offset": 1113,
"offset": 1079,
"length": 18,
"value": "\"fullTrendingCell\""
},
{
"filePath": "\/Users\/runner\/work\/sdk-ios-core\/sdk-ios-core\/Viafoura SDK\/ViafouraSDK\/ViewControllers\/TrendingConversations\/VFVerticalTrendingViewController.swift",
"kind": "StringLiteral",
"offset": 1160,
"offset": 1126,
"length": 8,
"value": "\"adCell\""
},
Expand Down Expand Up @@ -76618,7 +76487,7 @@
{
"filePath": "\/Users\/runner\/work\/sdk-ios-core\/sdk-ios-core\/Viafoura SDK\/ViafouraSDK\/ViafouraSDK.swift",
"kind": "BooleanLiteral",
"offset": 1565,
"offset": 1549,
"length": 5,
"value": "false"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,6 @@ extension VFVerticalTrendingViewController : UIKit.UITableViewDataSource, UIKit.
@_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, heightForRowAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGFloat
@_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, cellForRowAt indexPath: Foundation.IndexPath) -> UIKit.UITableViewCell
@_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, numberOfRowsInSection section: Swift.Int) -> Swift.Int
@_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, willDisplay cell: UIKit.UITableViewCell, forRowAt indexPath: Foundation.IndexPath)
}
extension VFVerticalTrendingViewController : VFLocalAdDelegate {
@_Concurrency.MainActor @preconcurrency public func generateAd(adPosition: Swift.Int) -> VFAdView?
Expand Down Expand Up @@ -1195,13 +1194,12 @@ public struct VFArticleMetadata {
@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class VFAdView : UIKit.UIView {
@objc deinit
}
@_inheritsConvenienceInitializers @objc public class ViafouraSDK : ObjectiveC.NSObject {
@_hasMissingDesignatedInitializers public class ViafouraSDK {
public static func initialize(siteUUID: Swift.String, siteDomain: Swift.String)
public static func setLoggingEnabled(_ isLoggingEnabled: Swift.Bool)
public static func isLoggingEnabled() -> Swift.Bool
public static func auth() -> any VFAuthenticationService
public static func comments() -> any VFLiveCommentsService
@objc override dynamic public init()
@objc deinit
}
extension VFLiveCommentsServiceImplementation {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,6 @@ extension ViafouraSDK.VFVerticalTrendingViewController : UIKit.UITableViewDataSo
@_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, heightForRowAt indexPath: Foundation.IndexPath) -> CoreFoundation.CGFloat
@_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, cellForRowAt indexPath: Foundation.IndexPath) -> UIKit.UITableViewCell
@_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, numberOfRowsInSection section: Swift.Int) -> Swift.Int
@_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, willDisplay cell: UIKit.UITableViewCell, forRowAt indexPath: Foundation.IndexPath)
}
extension ViafouraSDK.VFVerticalTrendingViewController : ViafouraSDK.VFLocalAdDelegate {
@_Concurrency.MainActor @preconcurrency public func generateAd(adPosition: Swift.Int) -> ViafouraSDK.VFAdView?
Expand Down Expand Up @@ -1195,13 +1194,12 @@ public struct VFArticleMetadata {
@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class VFAdView : UIKit.UIView {
@objc deinit
}
@_inheritsConvenienceInitializers @objc public class ViafouraSDK : ObjectiveC.NSObject {
@_hasMissingDesignatedInitializers public class ViafouraSDK {
public static func initialize(siteUUID: Swift.String, siteDomain: Swift.String)
public static func setLoggingEnabled(_ isLoggingEnabled: Swift.Bool)
public static func isLoggingEnabled() -> Swift.Bool
public static func auth() -> any ViafouraSDK.VFAuthenticationService
public static func comments() -> any ViafouraSDK.VFLiveCommentsService
@objc override dynamic public init()
@objc deinit
}
extension ViafouraSDK.VFLiveCommentsServiceImplementation {
Expand Down
Loading
Loading