GithubHelp home page GithubHelp logo

Comments (5)

krzysztof-osiecki avatar krzysztof-osiecki commented on June 20, 2024

The problem is in: https://github.com/Nightonke/VHBoomMenuButton/blob/master/VHBoomMenuButtonSwift/BoomMenuButton/Piece/PiecePlaceEnum.swift

public static var count: Int {
    return PiecePlaceEnum.custom.hashValue + 1
}

this method should read:

public static var count: Int {
    return PiecePlaceEnum.custom.rawValue + 1
}

Fix is quick, would be nice to apply it. For now we are forced to use obcj version.

from vhboommenubutton.

mouli457 avatar mouli457 commented on June 20, 2024

I had upload issue in Xcode 9,Can you please resolve issue this issue in Xcode 10

from vhboommenubutton.

salvasp avatar salvasp commented on June 20, 2024

the enums are changed with Swift 4.2
You should completely delete
public static var count: Int
and declare
public enum PiecePlaceEnum: Int, CaseIterable
then use
PiecePlaceEnum.allCases.count
for the count

Note if you have used hash value for the index of the element of the enum:
the hashValue is also changed now is an actual hash calculated consistently with the type. For a String enum you can use something like
enum StringEnum: String, CaseIterable
and inside the enum declare

var ordinal: Int {
           //force unwrap does not give problems because index of self always exist
           //index(of: self) does not shows in Autocomplete, it will suggest firstIndex(of:)
           //for the enum you can use what you prefer
            return StringEnum.allCases.index(of: self)! 
}

then replace . hashValue with .ordinal
I named it ordinal because by convention is so called in Java

and in code
let position: Int = StringEnum.aCase.ordinal
or if you don't prefer to add the variable to the enum
let position: Int = StringEnum.allCases.index(of: StringEnum.aCase)!

PS
There is duplicate case in ButtonPlaceManager
case .vertical, .ham_1, .ham_2, .ham_3, .ham_3, .ham_4, .ham_5, .ham_6:

from vhboommenubutton.

AzimJavaidKhan avatar AzimJavaidKhan commented on June 20, 2024

@Nightonke i m also facing this issue!
need help!

from vhboommenubutton.

dariolr avatar dariolr commented on June 20, 2024

try objc pod in your swift project.

pros:
no error, everything works as expected ( swift 4.2, Xcode 10.1 )

cons:
you need to rename all reference class

from vhboommenubutton.

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.