0

を使用して iOS アプリを変換しようとしていApportableます。

残念ながら、コマンドを使用してビルドするときにいくつかのエラーに直面していapportable buildます。問題の解決策をGoogleで検索してStackOverflowで検索しようとしました。configuration.jsonに「add_params」を追加すると役立つことがわかりましたが、それは機能せず、そこに何を追加すればよいか正確にはわかりません。ビルド出力:

Packaging resources.
scons: *** [assets/ResourceRules.plist] Source `/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/ResourceRules.plist' not found, needed by target `assets/ResourceRules.plist'.
Build/android-armeabi-debug/Cromian.CHASER/Chaser/libChaser.a(ChooseShoppingLocationViewController.m.o):/Users/Anders/Documents/Xcode/iOS_code/Cromian/Chaser/chaser_app/Chaser/ChooseShoppingLocationViewController.m:function L_OBJC_CLASSLIST_REFERENCES_$_54: error: undefined reference to 'OBJC_CLASS_$_MKPointAnnotation'
Build/android-armeabi-debug/Cromian.CHASER/Chaser/libChaser.a(ChooseShoppingLocationViewController.m.o):/Users/Anders/Documents/Xcode/iOS_code/Cromian/Chaser/chaser_app/Chaser/ChooseShoppingLocationViewController.m:function L_OBJC_CLASSLIST_REFERENCES_$_94: error: undefined reference to 'OBJC_CLASS_$_MKUserLocation'
Build/android-armeabi-debug/Cromian.CHASER/Chaser/libChaser.a(ChooseShoppingLocationViewController.m.o):/Users/Anders/Documents/Xcode/iOS_code/Cromian/Chaser/chaser_app/Chaser/ChooseShoppingLocationViewController.m:function L_OBJC_CLASSLIST_REFERENCES_$_99: error: undefined reference to 'OBJC_CLASS_$_MKPinAnnotationView'
scons: *** [Build/android-armeabi-debug/Chaser/apk/lib/armeabi/libverde.so] Error 1
scons: building terminated because of errors.
Anders-Friis-MacBook-Pro:chaser_app Anders$ 

MKPointAnnotation、およびにはまだ問題がMKUserLocationありMKPinAnnotationViewます。これらは次のクラスで使用されます。

ChooseShoppingLocationViewController.h

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import "NotificationController.h"

@interface ChooseShoppingLocationViewController : UIViewController <MKMapViewDelegate>
@property (strong, nonatomic) CLLocation *shoppingLocation;
@end

ChooseShoppingLocationViewController.m

@interface ChooseShoppingLocationViewController ()
@property (strong, nonatomic) IBOutlet MKMapView *mapView;
@property (strong, nonatomic) MKPointAnnotation *shoppingLocationAnnotation;
@end

...

- (MKPointAnnotation *)getNewShoppingLocationAnnotation
{
    MKPointAnnotation *annotation = [[MKPointAnnotation alloc] init];
    annotation.title = YOUR_SHOPPING_AREA_TEXT;
    return annotation;
}

...

- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
    userLocation.title = @"";
    CLLocationCoordinate2D location = [userLocation coordinate];
    MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(location, DISTANCE_SPAN, DISTANCE_SPAN);

    if (self.isFirstUserLocation) {
        dispatch_queue_t animateQueue = dispatch_queue_create("show user location", NULL);
        dispatch_async(animateQueue, ^{
            sleep(1.0);
            dispatch_async(dispatch_get_main_queue(), ^{
                [self.mapView setRegion:region animated:YES];
                [self.mapView selectAnnotation:self.shoppingLocationAnnotation animated:YES];
            });
        });
        self.isFirstUserLocation = NO;
    }
}

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id < MKAnnotation >)annotation {
    if ([annotation isKindOfClass:[MKUserLocation class]]) {
        return nil;
    }

    MKPinAnnotationView *pinView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"DETAILPIN_ID"];
    [pinView setAnimatesDrop:YES];
    [pinView setCanShowCallout:YES];
    [pinView setSelected:YES];
    return pinView;
}

これらのクラスを で使用できるようになりましたApportableか?

ところで、これらのクラスの使用を削除しようとすると、まだエラーが発生します:

scons: *** [assets/ResourceRules.plist] Source `/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/ResourceRules.plist' not found, needed by target `assets/ResourceRules.plist'.
scons: building terminated because of errors.
4

1 に答える 1