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

Add support for nested global entries #651

Open
wants to merge 13 commits into
base: master
Choose a base branch
from

Conversation

revolter
Copy link
Contributor

Please review each commit separately, as this PR is logically split into multiple "slow" transitions from the current implementation to the new one.

@revolter
Copy link
Contributor Author

In Swift, if you don't use the closure argument, like this:

FLEXManager.shared.registerGlobalEntry(withName: "Name") { _ in
    print("Log")
}

you now get the build error:

Ambiguous use of 'registerGlobalEntry'

and the only workaround that I can think of is changing the call to:

FLEXManager.shared.registerGlobalEntry(withName: "Name") { (_: UITableViewController) in
    print("Log")
}

or

FLEXManager.shared.registerGlobalEntry(withName: "Name") { (_: FLEXUserGlobalEntriesContainer) in
    print("Log")
}

But this means that you have to look into FLEX's files to find this out, if you're new to it.


So, I will rename the new method (from Swift's POV, the first parameter name), to avoid this ambiguity:

FLEXManager.shared.registerNestedGlobalEntry(withName: "Name") { _ in
    print("Log")
}

@revolter
Copy link
Contributor Author

@NSExceptional, do you have time to look over this? 😁

@NSExceptional
Copy link
Collaborator

Not at the moment no; I was actually in a serious car accident on Tuesday and just got out of the hospital yesterday 🤕

I reviewed a PR yesterday but it was just a small bug fix

@NSExceptional
Copy link
Collaborator

I'll try to get to this when I can use my hand again

@revolter
Copy link
Contributor Author

OMG, I'm so sorry to hear that 😱 Forget about this PR, get well soon 🤗

@revolter
Copy link
Contributor Author

I also added support for optionally customizing the cell accessory type:

Before After

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants