SweetAlert-iOS icon indicating copy to clipboard operation
SweetAlert-iOS copied to clipboard

xcode 8 ios 10

Open codeservis opened this issue 9 years ago • 4 comments

Gives that warnings !

ViewController.swift:32:22: Result of call to 'showAlert' is unused ViewController.swift:38:22: Result of call to 'showAlert(_:subTitle:style:)' is unused

like this about 12 warnings

codeservis avatar Jul 02 '16 14:07 codeservis

@codeservis it does not affect anything, its basically just extra code that is not used. You can delete it if you want to.

kvnbautista avatar Jul 02 '16 16:07 kvnbautista

if i delete them gives red warning

codeservis avatar Jul 02 '16 16:07 codeservis

Easy fix:

_ = self.showAlert(title, subTitle: subTitle, style: style, buttonTitle: "OK")

siideffect avatar Aug 12 '16 17:08 siideffect

Easy fix:

_ = self.showAlert(title, subTitle: subTitle, style: style, buttonTitle: "OK")

thanks to fix this warning

NupendraVerma avatar May 31 '19 07:05 NupendraVerma