xamarin.ios

Xamarin “The executable was signed with invalid entitlements”

纵然是瞬间 提交于 2020-02-27 06:23:11
问题 I want to test my created iOS app on my iPhone. The build was successful but while xamarin studio tries to transfer the file via usb to my iPhone i got the following error: VerifyingApplication: 70% PercentComplete: 40 Status: VerifyingApplication ApplicationVerificationFailed: Failed to verify code signature of /private/var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.yNZx88/extracted/<APPName>.app : 0xe8008016 (The executable was signed with invalid entitlements.) error

How to create navigation in a Xamarin.iOS app?

时光怂恿深爱的人放手 提交于 2020-02-25 09:44:07
问题 I'm used to working with Xamarin.Forms . I create a Page in XAML or C# and navigate to it. But now it's my first time trying to create an iOS app that's not Xamarin.Forms . I'm doing it from Visual Studio on a Windows PC (connected to a Mac, of course). I've figured out that the ViewController is something like a Xamarin.Forms Page . But how do I create another page and tell the app to navigate to it? Do I create another UIViewController ? And if so, how do I tell one to navigate to another?

MvvmCross MvxFormFactorSpecific iPad/iPhone Attributes

天涯浪子 提交于 2020-02-24 09:11:19
问题 I have both iPhone and iPad specific view controllers which have MvxFormFactorSpecific(MvxTouchFormFactor.Phone) and MvxFormFactorSpecific(MvxTouchFormFactor.Pad) attributes, respectively. When the app is run on an iPad, the correct view is found and instantiated. However, when the app is run on a 4" iPhone, it throws an exception saying the "Could not find view for...". So is this a bug or am I doing something wrong? Also, does MvxTouchFormFactor.Phone defaultly target 4" iPhones or do they

Xamarin Forms - ContentPage with SearchBar in the Navigation bar

馋奶兔 提交于 2020-02-22 08:09:06
问题 https://www.linkedin.com/pulse/xamarin-forms-contentpage-searchbar-navigation-bar-vipin-mathews/ I tried to implement the above code but not succeed, Search Icon not coming in page, After that I tried this Adding a Search Bar in the toolbar of a navigationpage in Prism , and its appears but once I changes the orientation or I logout or clicked on other page and come back again at this page its gone I downloaded the code from git but not able to run that also. <?xml version="1.0" encoding="utf

Xamarin Forms - ContentPage with SearchBar in the Navigation bar

纵饮孤独 提交于 2020-02-22 08:08:55
问题 https://www.linkedin.com/pulse/xamarin-forms-contentpage-searchbar-navigation-bar-vipin-mathews/ I tried to implement the above code but not succeed, Search Icon not coming in page, After that I tried this Adding a Search Bar in the toolbar of a navigationpage in Prism , and its appears but once I changes the orientation or I logout or clicked on other page and come back again at this page its gone I downloaded the code from git but not able to run that also. <?xml version="1.0" encoding="utf

Xamarin Forms - ContentPage with SearchBar in the Navigation bar

梦想与她 提交于 2020-02-22 08:08:52
问题 https://www.linkedin.com/pulse/xamarin-forms-contentpage-searchbar-navigation-bar-vipin-mathews/ I tried to implement the above code but not succeed, Search Icon not coming in page, After that I tried this Adding a Search Bar in the toolbar of a navigationpage in Prism , and its appears but once I changes the orientation or I logout or clicked on other page and come back again at this page its gone I downloaded the code from git but not able to run that also. <?xml version="1.0" encoding="utf

Xamarin Forms - ContentPage with SearchBar in the Navigation bar

给你一囗甜甜゛ 提交于 2020-02-22 08:08:39
问题 https://www.linkedin.com/pulse/xamarin-forms-contentpage-searchbar-navigation-bar-vipin-mathews/ I tried to implement the above code but not succeed, Search Icon not coming in page, After that I tried this Adding a Search Bar in the toolbar of a navigationpage in Prism , and its appears but once I changes the orientation or I logout or clicked on other page and come back again at this page its gone I downloaded the code from git but not able to run that also. <?xml version="1.0" encoding="utf

Xamarin Forms - ContentPage with SearchBar in the Navigation bar

我的未来我决定 提交于 2020-02-22 08:07:15
问题 https://www.linkedin.com/pulse/xamarin-forms-contentpage-searchbar-navigation-bar-vipin-mathews/ I tried to implement the above code but not succeed, Search Icon not coming in page, After that I tried this Adding a Search Bar in the toolbar of a navigationpage in Prism , and its appears but once I changes the orientation or I logout or clicked on other page and come back again at this page its gone I downloaded the code from git but not able to run that also. <?xml version="1.0" encoding="utf

Google Tag Manager doesn't fire events to Google Analytics

。_饼干妹妹 提交于 2020-02-08 09:10:01
问题 I'm using Xamarin.iOS and I have integrated TagManager using Google Analytics SDK (V3.10) I can see in the logs that the request is sent to Google Analytics, but It is not displayed in the dashboard. The same firing rules exits for both Android and iOS, which is always (true == true), and it works in Android great. This is the code for the class TagManager in iOS: public class IosTagManager : NSObject, ITagManager, ITAGContainerOpenerNotifier { private TAGContainer _container; public

MvvmCross: How do I use the MvxTableViewController with a nibname?

徘徊边缘 提交于 2020-02-05 02:34:08
问题 I don't see the constructor that takes a nibname for the MvxTableViewController. I do see it for MvxViewController. 回答1: The nib-based constructor isn't currently exposed by MvvmCross - so you can only currently do this by: forking the source code and building your own copy copying the source code into your own classes and using those - this isn't a big chore - you'd just need your own copies of: https://github.com/slodge/MvvmCross/blob/v3/Cirrious/Cirrious.MvvmCross.Touch/Views