Цель Sharpie отсутствует большая часть API
Я пытаюсь заставить Objective Sharpie сгенерировать привязки для Spotify iOS SDK.
Я использую следующую команду:
sharpie bind -sdk iphoneos10.2 \
-output SpotifyAuthenticationBindings \
SpotifyAuthentication.framework/Headers/SpotifyAuthentication.h \
-scope SpotifyAuthentication.framework/Headers/ \
-c -F .
Тем не менее, вывод ApiDefinitions.cs
кажется, не содержит много вне констант:
using Foundation;
using SpotifyAuthentication;
using UIKit;
[Static]
[Verify (ConstantsInterfaceAssociation)]
partial interface Constants
{
// extern double SpotifyAuthenticationVersionNumber;
[Field ("SpotifyAuthenticationVersionNumber", "__Internal")]
double SpotifyAuthenticationVersionNumber { get; }
// extern const unsigned char [] SpotifyAuthenticationVersionString;
[Field ("SpotifyAuthenticationVersionString", "__Internal")]
byte[] SpotifyAuthenticationVersionString { get; }
// extern NSString *const SPTAuthStreamingScope;
[Field ("SPTAuthStreamingScope", "__Internal")]
NSString SPTAuthStreamingScope { get; }
// extern NSString *const SPTAuthPlaylistReadPrivateScope;
[Field ("SPTAuthPlaylistReadPrivateScope", "__Internal")]
NSString SPTAuthPlaylistReadPrivateScope { get; }
// extern NSString *const SPTAuthPlaylistReadCollaborativeScope;
[Field ("SPTAuthPlaylistReadCollaborativeScope", "__Internal")]
NSString SPTAuthPlaylistReadCollaborativeScope { get; }
// extern NSString *const SPTAuthPlaylistModifyPublicScope;
[Field ("SPTAuthPlaylistModifyPublicScope", "__Internal")]
NSString SPTAuthPlaylistModifyPublicScope { get; }
// extern NSString *const SPTAuthPlaylistModifyPrivateScope;
[Field ("SPTAuthPlaylistModifyPrivateScope", "__Internal")]
NSString SPTAuthPlaylistModifyPrivateScope { get; }
// extern NSString *const SPTAuthUserFollowModifyScope;
[Field ("SPTAuthUserFollowModifyScope", "__Internal")]
NSString SPTAuthUserFollowModifyScope { get; }
// extern NSString *const SPTAuthUserFollowReadScope;
[Field ("SPTAuthUserFollowReadScope", "__Internal")]
NSString SPTAuthUserFollowReadScope { get; }
// extern NSString *const SPTAuthUserLibraryReadScope;
[Field ("SPTAuthUserLibraryReadScope", "__Internal")]
NSString SPTAuthUserLibraryReadScope { get; }
// extern NSString *const SPTAuthUserLibraryModifyScope;
[Field ("SPTAuthUserLibraryModifyScope", "__Internal")]
NSString SPTAuthUserLibraryModifyScope { get; }
// extern NSString *const SPTAuthUserReadPrivateScope;
[Field ("SPTAuthUserReadPrivateScope", "__Internal")]
NSString SPTAuthUserReadPrivateScope { get; }
// extern NSString *const SPTAuthUserReadTopScope;
[Field ("SPTAuthUserReadTopScope", "__Internal")]
NSString SPTAuthUserReadTopScope { get; }
// extern NSString *const SPTAuthUserReadBirthDateScope;
[Field ("SPTAuthUserReadBirthDateScope", "__Internal")]
NSString SPTAuthUserReadBirthDateScope { get; }
// extern NSString *const SPTAuthUserReadEmailScope;
[Field ("SPTAuthUserReadEmailScope", "__Internal")]
NSString SPTAuthUserReadEmailScope { get; }
// extern NSString *const SPTAuthSessionUserDefaultsKey;
[Field ("SPTAuthSessionUserDefaultsKey", "__Internal")]
NSString SPTAuthSessionUserDefaultsKey { get; }
}
// typedef void (^SPTAuthCallback)(NSError *, SPTSession *);
delegate void SPTAuthCallback (NSError arg0, SPTSession arg1);
// @interface SPTConnectButton : UIControl
[BaseType (typeof(UIControl))]
interface SPTConnectButton
{
}
Как я могу заставить его генерировать определения для всех классов? (от SPTAuth)
1 ответ
Решение
В SpotifyAuthentication.framework/Headers/SpotifyAuthentication.h
, удалить SpotifyAuthentication/
каталог из import
заявления:
#import <SPTAuth.h>
#import <SPTSession.h>
#if TARGET_OS_IPHONE
#import <SPTConnectButton.h>
#import <SPTAuthViewController.h>
#import <SPTStoreViewController.h>
#import <SPTEmbeddedImages.h>
#endif
Находчивый:
sharpie -tlm-do-not-submit \
bind \
-sdk iphoneos10.2 \
-output SpotifyAuthenticationBindings \
SpotifyAuthentication.framework/Headers/SpotifyAuthentication.h \
-c -ISpotifyAuthentication.framework/Header
Ваш результат ApiDefinitions.cs
Теперь должно содержать ~300 строк, и у вас будет некоторая работа по очистке с [Verify]
теги....