// Show poem written by other
poem.onTouch = {p in
let vc = PoemViewController(poem: p)
self.showPoem(vc)
}
// Add Your Wonderful Poem
if (your.heart.touched) {
let image : UIImage = ...
let lyric : String = ...
let poem : Poem = Poem(image: image, text : lyric)
addPoem(poem)
}
// Then next..
you.go.nextTripWithPoems(others.poems)
Log in or sign up for Devpost to join the conversation.