DemoApp/DemoApp/AppDelegate.swift in xcmultilingual-0.1.6 vs DemoApp/DemoApp/AppDelegate.swift in xcmultilingual-0.1.7
- old
+ new
@@ -12,22 +12,10 @@
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
-
- let samples = [
- Sample(desc: "Localizable: ", result: Multilingual.Localizable.HELLO.string()),
- Sample(desc: "Main: ", result: Multilingual.Animal.DOG.string()),
- Sample(desc: "Sample: ", result: Multilingual.SampleSample.SAMPLE.string()),
- Sample(desc: "Sample2: ", result: Multilingual.Sample2Sample.SAMPLE.string())
- ]
-
- println("Animals: \(Multilingual.Animal.localizations())")
-
- let sampler = Sampler(samples: samples)
- sampler.print()
-
+
return true
}
func applicationWillResignActive(application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.