I have create one structure in swift, I want to create and use same with Objective c.
Constant.Swift
struct Segues
{
static let SignUpToSignIn = "SignUpToSignIn"
static let SingInToForgotPassword = "SingInToForgotPassword"
static let MatchesToProfile = "MatchesToProfile"
}
ViewController.swift
self.performSegue(withIdentifier: Segues.MatchesToProfile, sender: nil)
I have created above structure with swift now please help me to do same with Objective C. I have tried but I can not find the way that can be done with Objective-C struct.
Is it possible using structure ? or there is any other way to achieve same.
Thanks in advance!