Ich versuche, eine benutzerdefinierte ActivityIndicatorView verwenden, die in Obj-C geschrieben ist. Es enthält eine Methode, um den Indikator im UIView-Rahmen zu zentrieren. Ich habe Probleme, es in meinem Swift-Code zu verwenden. Hier ist der Code ...Wie konvertiert man MONActivityView-Methode für Swift
- (void)placeAtTheCenterWithView:(UIView *)view {
[self.view addConstraint:[NSLayoutConstraint constraintWithItem:view
attribute:NSLayoutAttributeCenterX
relatedBy:NSLayoutRelationEqual
toItem:self.view
attribute:NSLayoutAttributeCenterX
multiplier:1.0f
constant:0.0f]];
[self.view addConstraint:[NSLayoutConstraint constraintWithItem:view
attribute:NSLayoutAttributeCenterY
relatedBy:NSLayoutRelationEqual
toItem:self.view
attribute:NSLayoutAttributeCenterY
multiplier:1.0f
constant:0.0f]];
}
Der Link zum GitHub ist https://github.com/mownier/MONActivityIndicatorView
Wie kann ich dies in Swift verwenden?