So, I just understand that a break is just a loop or a switch.

Here is my question: is there a recommended way to break out of the block? For example:
func getContentFrom(group: ALAssetsGroup, withAssetFilter: ALAssetsFilter) { group.enumerateAssetsUsingBlock { (result, index , stop) -> Void in
I am using return now, but I'm not sure if this is recommended. Are there any other ways? Thanks guys.
loops ios break swift
ytbryan
source share