Giter Site home page Giter Site logo

Comments (6)

hiltonc avatar hiltonc commented on May 31, 2024

You can use - (void)registerBlock:(DPLRouteHandlerBlock)routeHandlerBlock forRoute:(NSString *)route.

from deeplinkkit.

chrismaddern avatar chrismaddern commented on May 31, 2024

@cjwirth If you have anything that you think could be contribute-able back, would love to see a pull request. Better Swift support is definitely something that we'd like to do soon!

from deeplinkkit.

basememara avatar basememara commented on May 31, 2024

Can I see a code sample for this pls? I've been struggling with this and can't get it to work. This is what I have:

AppDelegate:

    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
        self.router = DPLDeepLinkRouter()
        self.router.registerHandlerClass(PostRouteHandler.self, forRoute: "/post/:slug")

        return true
    }

PostRouteHandler:

public class PostRouteHandler: DPLRouteHandler {

    override public func targetViewController() -> UIViewController {
        return PostDetailController()
    }

}

PostDetailController:

class PostDetailController: UIViewController, DPLTargetViewController {
    func configureWithDeepLink(deepLink: DPLDeepLink!) {
        if let slug = deepLink.routeParameters["slug"] as? String {
            // Do something
        }
    }
}

My breakpoint in configureWithDeepLink just won't hit when going to mydpl://post/my-slug.

from deeplinkkit.

platedbay avatar platedbay commented on May 31, 2024

You don't need the first /

self.router.registerHandlerClass(PostRouteHandler.self, forRoute: "post/:slug")

from deeplinkkit.

chrismaddern avatar chrismaddern commented on May 31, 2024

Anything after the first / in an incoming URL is considered part of the path, in this case, post is actually the host... just another way that URLs aren't perfectly designed for deep linking ;)

@platedbay is right.. remove the first / and you should be good.

from deeplinkkit.

basememara avatar basememara commented on May 31, 2024

Ahh silly mistake, it worked! I copied the samples /product/:sku route but I guess that wasn't what I thought. Thanks! I hope the sample helps someone else ;)

from deeplinkkit.

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.