I recently came across some symbols in an Xcode project that I haven’t noticed before.
What is
@{some_value}and
@[some_value]
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It should be
@{key:value}which represents a dictionary with key and value.@[some_value]should be an array. As mentioned in the other answer, check Objective C Literals for more details.From that link an example is,