Giter VIP home page Giter VIP logo

Comments (6)

nicksnyder avatar nicksnyder commented on May 29, 2024

It would be nice for LayoutKit to be extension safe.

If we just skip this code then it seems like right-to-left languages wouldn't be handled properly in the today extension. Need to find out if there is an extension safe way to know if the UI should be right-to-left.

from layoutkit.

FabianTerhorst avatar FabianTerhorst commented on May 29, 2024

What's about:

if #available(iOS 9.0, *) {
  if UIView.userInterfaceLayoutDirection(
    for: myView.semanticContentAttribute) == .rightToLeft {


      // The view is shown in right-to-left mode right now.
  }
} else { /* Use the previous technique */ }

from layoutkit.

nicksnyder avatar nicksnyder commented on May 29, 2024

@FabianTerhorst Can you share what error you are seeing and when. I just tried adding a Today extension to LayoutKitSampleApp and (surprisingly) everything seemed to work fine.

from layoutkit.

FabianTerhorst avatar FabianTerhorst commented on May 29, 2024

@nicksnyder im getting 'sharedApplication' is unavailable: not available on iOS (App Extension) as a build error. At the bottom of the page: https://developer.apple.com/library/ios/documentation/General/Conceptual/ExtensibilityPG/ExtensionOverview.html its also documented that this can´t work.

from layoutkit.

nicksnyder avatar nicksnyder commented on May 29, 2024

I am able to reproduce this in a separate app.

This is a compile time error so the else case can't use Application.sharedApplication either.

This means we have to choose between supporting right-to-left languages on Today Extensions and supporting it on iOS 8.

I think what we can do is add a build flag so consumers can make this decision for themselves.

#if LAYOUTKIT_EXTENSION_SAFE
    if #available(iOS 9.0, *) {
        // TODO
    } else {
        // can't support right to left languages here :(
    }
#else
    if Application.sharedApplication().userInterfaceLayoutDirection != direction {
        flipSubviewsHorizontally(view)
    }
#endif

Then consumers can add a post_install hook to set this flag if they want to drop iOS RTL support to add extension support.

post_install do |installer|
    installer.pods_project.targets.each do |target|
        if target.name == 'LayoutKit'
            target.build_configurations.each do |config|
                config.build_settings['OTHER_SWIFT_FLAGS'] = '-DLAYOUTKIT_EXTENSION_SAFE'
            end
        end
    end
end

Will need to fixup the sample app and add a Today extension so we can test this.

from layoutkit.

nicksnyder avatar nicksnyder commented on May 29, 2024

For the record, the final solution won't require a build flag

from layoutkit.

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.