小编TZK*_*203的帖子

DataGrip 图未显示表关系

我一直有一个奇怪的问题,我的 DataGrip 图生成没有展示表之间的关系(换句话说,关系箭头没有出现)。

这是我正在谈论的图像。

我一直在制作这个 DataGrip 图:右键单击我的架构 --> 图表 --> 显示可视化。上图是每次的结果。

我该如何解决这个问题以显示箭头?在你问之前,我的架构表中有引用其他表中其他列的外键。

mysql jetbrains-ide datagrip

5
推荐指数
1
解决办法
3104
查看次数

IOS 8 CLLocationManager问题(授权不起作用)

#import "MyLocationViewController.h"
#define NSLog(FORMAT, ...) printf("%s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);

@interface MyLocationViewController ()

@end

@implementation MyLocationViewController

{
    CLLocationManager *locationManager;
}

- (void)requestAlwaysAuthorization
{
    [locationManager requestAlwaysAuthorization];
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.
    self.mapView.showsUserLocation = YES;
    self.mapView.delegate = self;
    locationManager = [[CLLocationManager alloc] init];

}

- (IBAction)unwindToMap:(UIStoryboardSegue *)segue
{

}

- (IBAction)getCurrentLocation:(id)sender {
    locationManager.delegate = self;
    locationManager.desiredAccuracy = kCLLocationAccuracyBest;
    [locationManager startUpdatingLocation];
}

- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
    MKCoordinateRegion …
Run Code Online (Sandbox Code Playgroud)

cllocationmanager ios

2
推荐指数
1
解决办法
7853
查看次数

标签 统计

cllocationmanager ×1

datagrip ×1

ios ×1

jetbrains-ide ×1

mysql ×1