If let - Multiple conditions

Viewed 1433

Can I use multiple conditions of let obj = something in IF

if let u = custom["u"] as? String || let url = custom["URL"] as? String
{
// Do something here
}
4 Answers
Related