Giter Site home page Giter Site logo

Comments (5)

blommegard avatar blommegard commented on May 14, 2024

Hi!

Do you use Cocoapods or Carthage? Would you mind trying out the master branch before I make a release?

from flagkit.

edwardmp avatar edwardmp commented on May 14, 2024

CocoaPods. I see your commits, might indeed be related to Swift 4 compatibility. Will check out the master branch and report back shortly, thanks!

from flagkit.

blommegard avatar blommegard commented on May 14, 2024

@edwardmp How did this go? :)

from flagkit.

skparticles avatar skparticles commented on May 14, 2024

Yes. This issue still there. @objc is missing the respective function.
@objc public init?(countryCode: String) {

from flagkit.

blommegard avatar blommegard commented on May 14, 2024

The generated FlagKit-Swift.h looks like:

enum FKFlagStyle : NSInteger;

SWIFT_CLASS_NAMED("Flag")
@interface FKFlag : NSObject
/// Country code of the flag
@property (nonatomic, readonly, copy) NSString * _Nonnull countryCode;
/// Original unstyled flag image
@property (nonatomic, readonly, strong) UIImage * _Nonnull originalImage;
/// Returns a flag if the country code is supported, otherwise it returns nil
- (nullable instancetype)initWithCountryCode:(NSString * _Nonnull)countryCode OBJC_DESIGNATED_INITIALIZER;
/// Returns a styled flag according to the provided style
/// \param style Desired flag style
///
- (UIImage * _Nonnull)imageWithStyle:(enum FKFlagStyle)style SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end

typedef SWIFT_ENUM_NAMED(NSInteger, FKFlagStyle, "FlagStyle", closed) {
/// Rectangle of 21 x 15 points with no styling.
  FKFlagStyleNone = 0,
/// Rectangle of 21 x 15 points with rounded corners.
  FKFlagStyleRoundedRect = 1,
/// Square of 15 x 15 points with rounded corners.
  FKFlagStyleSquare = 2,
/// Circular flag of 15 x 15 points.
  FKFlagStyleCircle = 3,
};

from flagkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.