REPOSITORY OVERVIEWLive repository statistics
★ 27Stars
⑂ 7Forks
◯ 2Open issues
◉ 27Watchers
41/100
OPENREPOHUB HEALTH SIGNALLimited signals
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
52 Community adoption25% weight
27 Maintenance state20% weight
65 License clarity10% weight
0 Project information10% weight
35 This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview
ObjectiveSpring
A sample project for using the Spring animation library in Objective-C
project
http://github.com/Mengto/Spring
Code sample
#import "ViewController.h"
#import "ObjectiveSpring-Swift.h"
@interface ViewController ()
@property (nonatomic, strong) SpringView *springView;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
SpringView *springView = [[SpringView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
springView.backgroundColor = [UIColor yellowColor];
springView.animation = @"pop";
springView.delay = 1;
springView.duration = 3;
springView.autostart = true;
self.springView = springView;
[self.view addSubview:springView];
}
// Manually trigger an animation
- (IBAction)animateButtonDidPress:(id)sender {
[self.springView animate];
}
@end
ALGORITHMICALLY RELATEDSimilar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
A sample iOS app built using the Clean Swift architecture. Clean Swift is Uncle Bob's Clean Architecture applied to iOS and Mac projects. CleanStore demonstrates Clean Swift by implementing the create order use case described by in Uncle Bob's talks.
84/100 healthRecently updatedActive repositoryHas homepage
SwiftMIT
⑂ 310 forks◯ 25 issuesUpdated 9 days ago
Project homepage ↗Sample project demonstrating self-sizing table view cells in iOS 8 using Swift and Objective-C.
70/100 healthRecently updatedActive repository
SwiftNo license
⑂ 144 forks◯ 18 issuesUpdated 6 days ago