Why won't the method not found warning go away?
Posted
by TheLearner
on Stack Overflow
See other posts from Stack Overflow
or by TheLearner
Published on 2010-06-01T12:50:41Z
Indexed on
2010/06/01
12:53 UTC
Read the original article
Hit count: 224
objective-c
|iphone-sdk
I have a class with a method that works and I have tested it but xcode still raises a warning over the method:
MapPoint *mp = [[MapPoint alloc] initWithCoordinate:[newLocation coordinate] title:[locationTitleField text]];
no 'initWithCoordinate:title' method found?
© Stack Overflow or respective owner