I wrote code.
But its code happen warning.
Its warning text is
Incompatible integer to pointer conversion assigning to 'NSInteger *' (aka 'int *') from 'NSInteger' (aka 'int')
This is code that is causing the warning.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
...
apd.newyear = [newys integerValue];//Its error happen on this row.
apd.newmonth = [newms integerValue];//Its error happen on this row.
[self dismissViewControllerAnimated:YES completion:nil];
}