本文整理汇总了C#中NSDictionary类的典型用法代码示例。如果您正苦于以下问题:C# NSDictionary类的具体用法?C# NSDictionary怎么用?C# NSDictionary使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
NSDictionary类属于命名空间,在下文中一共展示了NSDictionary类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FinishedLaunching
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
{
ServiceLocator.Instance.Add<IDatabase, Database>();
Globe.SharedInstance.Database.InitializeDatabase();
int userid = (int)NSUserDefaults.StandardUserDefaults.IntForKey("iduser");
string username = NSUserDefaults.StandardUserDefaults.StringForKey("username");
string password = NSUserDefaults.StandardUserDefaults.StringForKey("password");
if (!String.IsNullOrEmpty(username) && !string.IsNullOrEmpty(password) && userid != 0)
{
Globe.SharedInstance.User.username = username;
Globe.SharedInstance.User.password = password;
Globe.SharedInstance.User.idUser = userid;
createTabBarController();
Window.RootViewController = TabBarController;
Window.MakeKeyAndVisible();
}
SDImageCache.SharedImageCache.ClearMemory();
SDImageCache.SharedImageCache.ClearDisk();
StartTickNotification();
if (launchOptions != null && launchOptions.ObjectForKey(UIApplication.LaunchOptionsRemoteNotificationKey) != null && TabBarController != null)
{
TabBarController.SelectedIndex = 1;
}
return true;
}
示例2: FinishedLaunching
public override bool FinishedLaunching (UIApplication application, NSDictionary launchOptions)
{
Current = this;
// SQL
// var sqliteFilename = "TaskDB.db3";
// string documentsPath = Environment.GetFolderPath (Environment.SpecialFolder.Personal); // Documents folder
// string libraryPath = Path.Combine (documentsPath, "..", "Library"); // Library folder
// var path = Path.Combine(libraryPath, sqliteFilename);
// var conn = new Connection(path);
// TaskMgr = new TodoItemManager(conn);
// AZURE
TaskMgr = new TodoItemManager(AzureStorageImplementation.DefaultService);
// PUSH
//var settings = UIUserNotificationSettings.GetSettingsForTypes (
// UIUserNotificationType.Alert | UIUserNotificationType.Badge | UIUserNotificationType.Sound
// , null);
//UIApplication.SharedApplication.RegisterUserNotificationSettings (settings);
//UIRemoteNotificationType notificationTypes =
// UIRemoteNotificationType.Alert | UIRemoteNotificationType.Badge | UIRemoteNotificationType.Sound;
//UIApplication.SharedApplication.RegisterForRemoteNotificationTypes(notificationTypes);
return true;
}
示例3: FinishedLaunching
public override bool FinishedLaunching (UIApplication application, NSDictionary launchOptions)
{
// Override point for customization after application launch.
// If not required for your application you can safely delete this method
return true;
}
示例4: FinishedLaunching
public override bool FinishedLaunching(UIApplication uiApplication, NSDictionary launchOptions)
{
SensusServiceHelper.Initialize(() => new iOSSensusServiceHelper());
// facebook settings
Settings.AppID = "873948892650954";
Settings.DisplayName = "Sensus";
Forms.Init();
FormsMaps.Init();
MapExtendRenderer.Init();
// toasts for iOS
DependencyService.Register<ToastNotificatorImplementation>();
ToastNotificatorImplementation.Init();
LoadApplication(new App());
uiApplication.RegisterUserNotificationSettings(UIUserNotificationSettings.GetSettingsForTypes(UIUserNotificationType.Badge | UIUserNotificationType.Sound | UIUserNotificationType.Alert, new NSSet()));
#if UNIT_TESTING
Forms.ViewInitialized += (sender, e) =>
{
if (!string.IsNullOrWhiteSpace(e.View.StyleId))
e.NativeView.AccessibilityIdentifier = e.View.StyleId;
};
Calabash.Start();
#endif
return base.FinishedLaunching(uiApplication, launchOptions);
}
示例5: FinishedLaunching
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
// create our window
window = new UIWindow (UIScreen.MainScreen.Bounds);
window.MakeKeyAndVisible ();
// are we running an iPhone or an iPad?
DetermineCurrentDevice ();
// instantiate our main navigatin controller and add it's view to the window
mainNavController = new UINavigationController ();
switch (CurrentDevice)
{
case DeviceType.iPhone:
iPhoneHome = new HandlingRotation.Screens.iPhone.Home.HomeScreen ();
mainNavController.PushViewController (iPhoneHome, false);
break;
case DeviceType.iPad:
iPadHome = new HandlingRotation.Screens.iPad.Home.HomeScreenPad ();
mainNavController.PushViewController (iPadHome, false);
break;
}
window.RootViewController = mainNavController;
return true;
}
示例6: FinishedPickingMedia
public override void FinishedPickingMedia(UIImagePickerController picker, NSDictionary info)
{
MediaFile mediaFile;
switch ((NSString)info[UIImagePickerController.MediaType])
{
case MediaImplementation.TypeImage:
mediaFile = GetPictureMediaFile(info);
break;
case MediaImplementation.TypeMovie:
mediaFile = GetMovieMediaFile(info);
break;
default:
throw new NotSupportedException();
}
if (UIDevice.CurrentDevice.UserInterfaceIdiom == UIUserInterfaceIdiom.Phone)
{
UIApplication.SharedApplication.SetStatusBarStyle(MediaImplementation.StatusBarStyle, false);
}
Dismiss(picker, () =>
{
this.tcs.TrySetResult(mediaFile);
});
}
示例7: FinishedLaunching
//
// This method is invoked when the application has loaded and is ready to run. In this
// method you should instantiate the window, load the UI into it and then make the window
// visible.
//
// You have 17 seconds to return from this method, or iOS will terminate your application.
//
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
// create a new window instance based on the screen size
window = new UIWindow (UIScreen.MainScreen.Bounds);
// load the appropriate UI, depending on whether the app is running on an iPhone or iPad
if (UIDevice.CurrentDevice.UserInterfaceIdiom == UIUserInterfaceIdiom.Phone) {
var controller = new RootViewController ();
navigationController = new UINavigationController (controller);
window.RootViewController = navigationController;
} else {
var masterViewController = new RootViewController ();
var masterNavigationController = new UINavigationController (masterViewController);
var detailViewController = new DetailViewController ();
var detailNavigationController = new UINavigationController (detailViewController);
splitViewController = new UISplitViewController ();
splitViewController.WeakDelegate = detailViewController;
splitViewController.ViewControllers = new UIViewController[] {
masterNavigationController,
detailNavigationController
};
window.RootViewController = splitViewController;
}
// make the window visible
window.MakeKeyAndVisible ();
return true;
}
开发者ID:XamarinControls,项目名称:govindaraokondala-horizontal-scrolling-in-Table-in-IOS,代码行数:38,代码来源:AppDelegate.cs
示例8: AddConstraints
void AddConstraints ()
{
var views = new NSDictionary ("textView", textView);
View.AddConstraints (NSLayoutConstraint.FromVisualFormat ("H:|-0-[textView]-0-|", 0, null, views));
View.AddConstraints (NSLayoutConstraint.FromVisualFormat ("V:|-0-[textView]-0-|", 0, null, views));
}
示例9: FinishedLaunching
//
// This method is invoked when the application has loaded and is ready to run. In this
// method you should instantiate the window, load the UI into it and then make the window
// visible.
//
// You have 17 seconds to return from this method, or iOS will terminate your application.
//
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
// create a new window instance based on the screen size
window = new UIWindow (UIScreen.MainScreen.Bounds);
InvokeOnMainThread(delegate {
TwitterAccount.getAccount();
});
flyoutController = new FlyOutNavigationController();
tl = new Timeline(flyoutController);
flyoutController.NavigationRoot = new RootElement("")
{
new Section("Navigation")
{
new StringElement("Timeline")
}
};
flyoutController.ViewControllers = new UIViewController[]
{
new UINavigationController(tl)
};
window.AddSubview(flyoutController.View);
// make the window visible
window.MakeKeyAndVisible ();
return true;
}
示例10: FinishedLaunching
//
// This method is invoked when the application has loaded and is ready to run. In this
// method you should instantiate the window, load the UI into it and then make the window
// visible.
//
// You have 17 seconds to return from this method, or iOS will terminate your application.
//
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
var manager = new DBAccountManager (DropboxSyncKey, DropboxSyncSecret);
DBAccountManager.SharedManager = manager;
// create a new window instance based on the screen size
window = new UIWindow (UIScreen.MainScreen.Bounds);
window.RootViewController = new UINavigationController (new PlaygroundViewController ());
Task.Factory.StartNew (() => {
this.BeginInvokeOnMainThread (() => {
var account = DBAccountManager.SharedManager.LinkedAccount;
if (account != null) {
SetupDropbox ();
} else
manager.LinkFromController (window.RootViewController);
});
});
// make the window visible
window.MakeKeyAndVisible ();
app.ApplicationSupportsShakeToEdit = true;
return true;
}
示例11: FinishedLaunching
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
// create a new window instance based on the screen size
window = new UIWindow (UIScreen.MainScreen.Bounds);
// make the window visible
window.MakeKeyAndVisible ();
// create our nav controller
navController = new UINavigationController ();
// create our home controller based on the device
if (UIDevice.CurrentDevice.UserInterfaceIdiom == UIUserInterfaceIdiom.Phone) {
homeViewController = new Screens.HomeScreen();
} else {
// sample does not contain an iPad UI
// homeViewController = new Screens.iPadHomeScreen ();
}
// push the view controller onto the nav controller and show the window
navController.PushViewController(homeViewController, false);
window.RootViewController = navController;
window.MakeKeyAndVisible ();
return true;
}
示例12: FinishedLaunching
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
window = new UIWindow (UIScreen.MainScreen.Bounds);
MenuViewController menuViewController = new MenuViewController(UITableViewStyle.Grouped);
DetailsViewController detailsViewController = new DetailsViewController();
UINavigationController navController = new UINavigationController (detailsViewController);
SlideMenuController slideMenuViewController = new SlideMenuController();
slideMenuViewController.SetContentViewController (navController);
slideMenuViewController.SetLeftMenuViewController (menuViewController);
UINavigationController cont = new UINavigationController (new MenuViewController (UITableViewStyle.Plain));
slideMenuViewController.SetRightMenuViewController (cont);
if (UIDevice.CurrentDevice.UserInterfaceIdiom == UIUserInterfaceIdiom.Pad) {
slideMenuViewController.WidthOfPortraitContentViewVisible = 300f;
slideMenuViewController.WidthOfLandscapeContentViewVisible = 556f;
}
window.RootViewController = slideMenuViewController;
window.BackgroundColor = UIColor.White;
window.MakeKeyAndVisible ();
return true;
}
示例13: FinishedLaunching
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
Forms.Init ();
FFImageLoading.Forms.Touch.CachedImageRenderer.Init();
PSPDFKitGlobal.SetLicenseKey ("Y3Bqql3OalXRl48bnbk9xtd6ZuDlrCZLUpKIwqZSvsBoeoRcg3pJUv1Mkr4fAn3GZxQIB7xp+Rlqxd+rrorXvolIpe2tXXuYN0Qv+4SlZUbGwePPseh1/Co7pY2nnP0GM9ppHCu/atHaMTB89UgoMtY+SSlNhVaFzHPtCP+lmazOlajqVjGN6YwfrlIb+H4EX66qQqU3+iR6y2XLCrm2IdJ2xDssNifAL0OlpujjCtGQWpLTFy3dGp7Sai5qqwEmnrbFv9TWdNFJ0wr8lOPi6DDBmgD8IzZPz8qfV9xEwiOqHhQ6G91OBKlIetojJcxqYc4x9ZG96TCoym4JRgBiu4p/5WarK5Yw1K4pz7BezsGh3InvD0cv6YnsgulGsQbBLFjAFoWbe+VLuiaMg+f07foklE6Yf5oncn4y46pEB6ZJUkXKqdhfKCb3GiE+77D4pa1+e3ntSYj6aLrdYd4RR3OTx6Ml3cveDIT7c1uFCYYzr95hGgu4NbxImb5tRmat//NXzZqnCVkaWze/szd0d1VsX6imtffJkIuqCjGPifZeL7QWGokN32P5/hxcIK6K");
//[PSPDFKit sharedInstance][@"com.pspdfkit.development.suppress-warning-alerts"] = @YES;
App.CurrentDevice = new iOSDeviceInfo ().GetDeviceModel (DeviceHardware.Version);
App.ScreenWidth = (int)UIScreen.MainScreen.Bounds.Width;
App.ScreenHeight = (int)UIScreen.MainScreen.Bounds.Height;
LoadApplication (new App());
return base.FinishedLaunching (app,options);
// Forms.Init ();
// //var version = PSPDFKitGlobal.SharedInstance.Version;
// // Activate PSPDFKit for com.corning.mediando.opcomm
// //[PSPDFKit setLicenseKey:@"Y3Bqql3OalXRl48bnbk9xtd6ZuDlrCZLUpKIwqZSvsBoeoRcg3pJUv1Mkr4fAn3GZxQIB7xp+Rlqxd+rrorXvolIpe2tXXuYN0Qv+4SlZUbGwePPseh1/Co7pY2nnP0GM9ppHCu/atHaMTB89UgoMtY+SSlNhVaFzHPtCP+lmazOlajqVjGN6YwfrlIb+H4EX66qQqU3+iR6y2XLCrm2IdJ2xDssNifAL0OlpujjCtGQWpLTFy3dGp7Sai5qqwEmnrbFv9TWdNFJ0wr8lOPi6DDBmgD8IzZPz8qfV9xEwiOqHhQ6G91OBKlIetojJcxqYc4x9ZG96TCoym4JRgBiu4p/5WarK5Yw1K4pz7BezsGh3InvD0cv6YnsgulGsQbBLFjAFoWbe+VLuiaMg+f07foklE6Yf5oncn4y46pEB6ZJUkXKqdhfKCb3GiE+77D4pa1+e3ntSYj6aLrdYd4RR3OTx6Ml3cveDIT7c1uFCYYzr95hGgu4NbxImb5tRmat//NXzZqnCVkaWze/szd0d1VsX6imtffJkIuqCjGPifZeL7QWGokN32P5/hxcIK6K");
// //PSPDFKitGlobal.SetLicenseKey ("Y3Bqql3OalXRl48bnbk9xtd6ZuDlrCZLUpKIwqZSvsBoeoRcg3pJUv1Mkr4fAn3GZxQIB7xp+Rlqxd+rrorXvolIpe2tXXuYN0Qv+4SlZUbGwePPseh1/Co7pY2nnP0GM9ppHCu/atHaMTB89UgoMtY+SSlNhVaFzHPtCP+lmazOlajqVjGN6YwfrlIb+H4EX66qQqU3+iR6y2XLCrm2IdJ2xDssNifAL0OlpujjCtGQWpLTFy3dGp7Sai5qqwEmnrbFv9TWdNFJ0wr8lOPi6DDBmgD8IzZPz8qfV9xEwiOqHhQ6G91OBKlIetojJcxqYc4x9ZG96TCoym4JRgBiu4p/5WarK5Yw1K4pz7BezsGh3InvD0cv6YnsgulGsQbBLFjAFoWbe+VLuiaMg+f07foklE6Yf5oncn4y46pEB6ZJUkXKqdhfKCb3GiE+77D4pa1+e3ntSYj6aLrdYd4RR3OTx6Ml3cveDIT7c1uFCYYzr95hGgu4NbxImb5tRmat//NXzZqnCVkaWze/szd0d1VsX6imtffJkIuqCjGPifZeL7QWGokN32P5/hxcIK6K");
// //var version = PSPDFKitGlobal.SharedInstance.Version;
// PSPDFKitGlobal.SetLicenseKey ("blcWhXFIwpatKqQ1FoOb3HyC_2clmIg-rDyAKwQapxIFxDfXqmFqKYedy0oMW94i90ERmUNfPU4B8_V1D6TeTyNmFlL-ICnqWCW5NxT2MW1E_K1RkhWgyqo0rOACe6o5tdoKwwCHLrccRnHzDnGShjYRs9boy2bcZmegG5KIti21WRkkhiUu5kIyRG7DvIOPliWFGMoQI9020S6Ak6j8Nc6abAkVQXAjPFXbEVpFTIIRcD7xGFkEwS6oL7YatYkKYbY94GFRYv6YLedMblRntdMVOPsrSidxOqerjU2Myom9Dxkx5CxvIvWKZLV00cjma_BCy4rgq9GO9ScYytQH1qiyaK8Hyk8oBSAiGhveUP7SAA7uS2CR9ZU0buZ-Cneqli4yw91PHPwRx1GpFItvMw5og157ajhN5UixQJ76T3c=");
// App.CurrentDevice = new iOSDeviceInfo ().GetDeviceModel (DeviceHardware.Version);
// App.ScreenWidth = (int)UIScreen.MainScreen.Bounds.Width;
// App.ScreenHeight = (int)UIScreen.MainScreen.Bounds.Height;
//
// LoadApplication (new App());
//
// return base.FinishedLaunching (app,options);
}
示例14: FinishedLaunching
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
// create a new window instance based on the screen size
window = new UIWindow (UIScreen.MainScreen.Bounds);
var sqliteFilename = "TodoSQLite.db3";
string documentsPath = Environment.GetFolderPath (Environment.SpecialFolder.Personal); // Documents folder
string libraryPath = Path.Combine (documentsPath, "..", "Library"); // Library folder
var path = Path.Combine(libraryPath, sqliteFilename);
// This is where we copy in the prepopulated database
Console.WriteLine (path);
if (!File.Exists (path)) {
File.Copy (sqliteFilename, path);
}
var plat = new SQLite.Net.Platform.XamarinIOS.SQLitePlatformIOS();
var conn = new SQLite.Net.SQLiteConnection(plat, path);
// Set the database connection string
App.SetDatabaseConnection (conn);
// window.RootViewController = new HybridRazorViewController ();
window.RootViewController = new UINavigationController(new NativeListViewController ());
// make the window visible
window.MakeKeyAndVisible ();
return true;
}
示例15: FinishedLaunching
//
// This method is invoked when the application has loaded and is ready to run. In this
// method you should instantiate the window, load the UI into it and then make the window
// visible.
//
// You have 17 seconds to return from this method, or iOS will terminate your application.
//
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
//
// ENTER YOUR LICENSE INFO HERE
//
PXEngine.LicenseKeyForUser("SERIAL NUMBER", "USER NAME");
// create a new window instance based on the screen size
window = new UIWindow (UIScreen.MainScreen.Bounds);
window.RootViewController = new MyViewController();
// make the window visible
window.MakeKeyAndVisible ();
PXEngine shared = PXEngine.SharedInstance();
// Print the version an build date
Console.WriteLine("Pixate Engine v{0} {1}", shared.Version, shared.BuildDate);
// Print the location of the current application-level stylesheet
Console.WriteLine("CSS File location: {0}", PXStylesheet.CurrentApplicationStylesheet().FilePath);
// Monitor for changes in the stylesheet and update styles live
PXStylesheet.CurrentApplicationStylesheet().MonitorChanges = true;
return true;
}