ERROR ITMS-90474: “Invalid Bundle. iPad Multitasking support requires these orientations:
Edit your plist file from xcode and add this lines <key>UIRequiresFullScreen</key> <true/> Or You can do below
Edit your plist file from xcode and add this lines <key>UIRequiresFullScreen</key> <true/> Or You can do below
[Note: My response is pretty thorough because I don’t know your level of understanding regarding app bundles or the structure of your iPhone app’s sandboxed little world – apologies if I cover things you already know – I prefer to write a little too much than too little, and to add a bit of the … Read more
I think you want setTitle: forState: [button setTitle:@”Baha’i” forState:UIControlStateNormal]
I found this amazing class in github that works like a charm. Toast for iOS It is enough to import the UIView+Toast.h and UIView+Toast.m files and then add [self.view makeToast:@”This is a piece of toast.”]; as written in the page examples.
application:didReceiveRemoteNotification: will call in the background only when you have added content-available key with value 1 into the notification payload. In case of the Urban Airship, you can send Test Push under the Setting tab. Sample Payload for Push Notifications: { “aps”: { “alert”: “aaaa”, “badge”: “+1”, “content-available”: “1” }, “device_tokens”: [ “86BA71E361B849E8312A7B943BA6B26A74AB436381CF3FEE3CD9EB436A12A292” ] } … Read more
There isn’t a ‘Xamarin.Forms’ way of doing it that I know of. You need to hook into Android and iOS, what you could do is create one method that handles them both in the same way. A nice post about this is by Peter Norman. He describes that to implement it in Android you can … Read more
I’m not familiar with MonoTouch, but what about using the Remote Logging features of the TestFlight SDK?
This is a badly written error message from Make. It means “one of your filenames had a character that could be part of a regular expression”. Make is very naive about filesystems and quoting. It doesn’t believe that: foo: ‘The bar.’ refers to a literal string. It takes The as one word, bar. as another … Read more
We have just finished a very data intensive app written in MonoTouch. The app accesses SAP data, through a middle tier, and exposes this on the app. It also allows direct updates from the app to SAP, again through the same middle tier. We are in the process of porting this to Windows Phone and … Read more
I got this error because forget to add sign in capability and restart the app.