Tagged Questions
0
votes
1answer
46 views
Center UISegmentedControl within a UISearchBar
I am using the built-in search scope with a UISearchDisplayController, and I only have 2 segments.
The problem is that our design needs the buttons to be smaller and centered (it especially looks bad ...
-3
votes
1answer
39 views
Detecting devices connected to WiFi hotspot IOS [closed]
When WiFi hotspot is enabled for an ios device. Is it possible to detect the devices connected to the WiFi hotspot?
Ideally I would like a list of IP addresses assigned to the devices connected to ...
2
votes
3answers
166 views
Reproducing the Tumblr Tagging Effect in iOS
I'm completely stumped as to how to do it.
First, the view looks something like this:
Next, you tap in the tags bar (I assume it is a modified UITextField with a placeholder image) and the tags bar ...
0
votes
1answer
96 views
How to create gantt chart view for iPad application?
I need to create an ipad application which has the same features like "Quickplan" ipad application ( http://www.youtube.com/watch?v=7S3x2iYhyKw
or
http://forums.macrumors.com/showthread.php?t=1564227 ...
0
votes
0answers
40 views
How to use UIGestureRecognizer's canBePreventedByGestureRecognizer and canPreventGestureRecognizer?
I see the canBePreventedByGestureRecognizer and canPreventGestureRecognizer methods in Apple's documentation but I have no idea how to use them.
I subclassed UITapGestureRecognizer and implemented the ...
0
votes
2answers
57 views
UISearch bar keyboard color iphone monotouch
How to change the UISeachBar keyboard color to the black ?
0
votes
1answer
55 views
How to unit/integration test classes that rely on NSNotificationCenter (in MonoTouch)?
I am writing an iOS application using MonoTouch that has a lot of information to be entered on quite a few different screens. Information A, B, and C might be entered on Screen 1, but I need to ...
0
votes
1answer
86 views
Occasional SIGSEGV in NSArray binding
I have the following property that I am binding:
@property (nonatomic, readwrite, retain) NSArray* activeTasks;
That I bind with the following code:
[Export("activeTasks", ...
1
vote
1answer
63 views
Using AddTarget for UIButton with MonoTouch and C#
EDIT: I now get the exception:
Stacktrace:
at (wrapper managed-to-native) MonoTouch.UIKit.UIApplication.UIApplicationMain (int,string[],intptr,intptr) <IL 0x0009f, 0xffffffff>
at ...
1
vote
2answers
305 views
A simple UIPickerView in MonoTouch (Xamarin)? [closed]
Can anybody describe how I can create a UIPickerView in monotouch using XCode and populate it with sample data?
I did look at the example here: ...
0
votes
1answer
96 views
Xamarin Monotouch UISplitViewController: How can I set or create the delegate for UISplitViewController?
I have a UISplitViewController and am trying to get an event from my MasterViewController and change the DetailViewController completely. So as I figured out, this can be done basically by doing the ...
4
votes
1answer
102 views
Toggle airplane mode monotouch xamarin
Note: this isn't an app for the App Store, so using private API's isn't a concern to me.
I've been trying to toggle Airplane mode off and back on using Xamarin/Monotouch based off this SO question: ...
0
votes
2answers
136 views
How to autosize height of UITableView?
I have a UITableView with Style=Grouped (though there aren't any groupings, I just like the style that it produces). Usually this UITableView has 2 or 3 rows in it depending on the situation.
How ...
0
votes
1answer
185 views
How to use iCarousel in Xamarin.iOS project
I'm trying to use an iOS library iCarousel in my Xamarin for iOS project. I made static library in XCode and added it to Xamarin iOS Binding project. Trying to define exports from lib .a file. But I ...
3
votes
4answers
203 views
MonoTouch binding to ObjectiveC library not working
the .h:
#import <Foundation/Foundation.h>
typedef enum _XLBadgeManagedType {
XLInboxManagedMethod = 0,
XLDeveloperManagedMethod = 1
} XLBadgeManagedType ;
@interface XLXtifyOptions ...
0
votes
2answers
56 views
Binding #define used as constant
The code I am trying to bind puts a very important key in one of the .h files:
#define xAppKey @"REPLACE_WITH_YOUR_APP_KEY"
This value is then reused throughout the ObjC code. I am suspicious that ...
1
vote
2answers
150 views
Creating MonoTouch binding with an Objective-C framework
I have a library in Objective-C that i want to bind to in monotouch (xamarin studio). This library is using a framework ('Firebase' framework), that I downloaded from a third party vendor. I compiled ...
0
votes
1answer
76 views
Align an image to the left in a UINavigationBar
I want to show a background image on my app's navigation bar.
Showing the image works:
UIImage image = new UIImage( @"Images/navbarlogo2.png");
UIImageView imageview = new UIImageView(image);
...
0
votes
1answer
123 views
MonoTouch Binding to NSString Field returning null in Release builds
I have successfully created an updated ZBar MonoTouch binding dll, following up on this answer here from a while ago, using the updated [Field] bindings to bind static NSStrings (previously I was just ...
1
vote
1answer
226 views
Is Monocross ready for professional use on an iOS device?
When creating a simple app with Monocross (using MonoTouch) and compiling for an iOS device I get some bad warnings, like this:
Warning MT4112: The registrar found a generic type: ...
0
votes
1answer
217 views
Target pattern contains no '%'. Makefile
I have searched this problem in google, but still don't have some way to resolve a problem. I have 2 Makefiles: One as example and one as my file.
Example:
BINDDIR=/src/binding
...
1
vote
1answer
178 views
How to bind NSObject<EAAccessoryDelegate> in Monotouch?
I have the following Obj-C .h, what is the correct way to bind?
@interface iSmart : NSObject<EAAccessoryDelegate>{
id<iSmartDelegate> delegate;
}
@property(nonatomic, assign) ...
5
votes
2answers
143 views
Reducing the cost of native <-> managed interactions in monotouch
I'm playing with a native library for which I wrote monotouch (are we supposed to name that Xamarin.iOS now?) bindings.
Overriding some often used methods in C# shows a severe performance downgrade, ...
-1
votes
2answers
87 views
Load nib / xib / view by clicking in the cell of tableview
How do I open a nib / xib / view while selecting a row from my tableview... Below is my code
public class TableViewDelegate : UITableViewDelegate
{
private List list;
public ...
3
votes
2answers
190 views
UIActivityViewController - Upload Youtube Video
I have a UIActivityViewController I'm using to share a video, I'm passing an NSString of text and a NSUrl that points to a local mp4 video file.
Sharing already works for email, message, photo album, ...
0
votes
3answers
128 views
Recurring background task in iOS
I would like to make an app that periodically, sporadically and automatically downloads some data from a list of user-defined sites, so it can then analyze and show historical graphs and other reports ...
1
vote
1answer
201 views
iOS application won't rotate on iPhone but will rotate on iPad
I made my gles app, and tested it on my iPad. It is supposed to work only on landscape mode, so I have my Info.plist like this
<key>UISupportedInterfaceOrientations</key>
<array>
...
0
votes
0answers
92 views
Monotouch- Access a native library's stderr
I am linking a third-party native library using the LinkWith attribute. This native library is outputting various logs in the stderr channel. I would like to access those logs because I need to report ...
1
vote
2answers
90 views
Choppy images in iOS simulator
I made an iOS game using GLES 2.0 for iOS. When I run it on an actual device, it works perfectly with my high-res images, but when I run it in the simulator, I get very choppy images:
I haven't ...
0
votes
3answers
93 views
Understanding how subview.center = view.center works and why the getter and setter do different things
I am seeing a lot of code that explains how to centre a subview inside a view. The code examples typically go like this:
SubView.center = view.center;
Could someone explain to me how this works? ...
0
votes
1answer
108 views
Image Not Centering In ScrollView after Zoom
I am trying to centre an imgView inside a scrollView so that when I zoom in, it will remain centred properly (like the photos app).
When the screen first loads, it is centred ok. When I pinch and ...
0
votes
1answer
125 views
ContentSize when Zooming in scrollViewDidZoom
I am having trouble with ContentSize in my scroll view. I have a scrollview which contains an ImageView which is the same size as the ScrollView.
I have pinching and scrolling the image working ...
0
votes
0answers
123 views
Source code for iOS photos app (MonoTouch or Obj-C) [closed]
I am looking for source code of the photos app in iPhone. There are some things about my image browser that just aren't as slick and smooth as how it works in photos on the iPhone and I want to ...
2
votes
1answer
121 views
Duplicate symbols in monotouch library and some 3rd party library I use
I'm working on an iPhone app with Monotouch. In my app, I have to use a static library provided by 3rd party. This library is for Xcode and written in Objective-C. I bound it with Monotouch using ...
1
vote
1answer
113 views
Need help figuring out why my UIImageView won't Zoom/Pan - Code snippet included
I have put a lot of code in place to try to get a UIImageView to Zoom/Pan. In the code below I have a large scrollView with paging and in each page I put in a scrollView which contains an imageView ...
1
vote
1answer
98 views
MonoTouch binding notifications in 3rd party library
I am working to create bindings for IDTech CC swipers. I have been banging my head against this for a while. I am stuck on how to subscribe to events that are raised by the 3rd party library. ...
1
vote
1answer
26 views
Is it possible to bind an ivar with no property declaration?
If there is a public ivar in an objective c class such as
@interface MyClass : NSObject {
NSString *thisItem;
}
Is there any way to add that ivar to my objective c bindings so I can access it ...
6
votes
2answers
311 views
Is it possible to add C references to an objective c binding?
There are some C style functions in an Objective C library I'm binding to that I need access to in my application. Is it possible to add these into the bindings in any way so I can access them in my ...
4
votes
1answer
124 views
Build static library in monotouch
Is it possible to build a static library using MonoTouch that can be used by Xcode developers? What about the headers?
I come from a C# background and I have a large library to port over to iOS.
...
3
votes
1answer
86 views
How to bind Obj-C #define UMLOG_ERROR @“[UM Error] ” with MonoTouch
Im new in MonoTouch. I am currently trying to bind an Objective-C library into MonoTouch, so far I've done much of the work, however, i don't know how to bind the following code :
static inline ...
0
votes
1answer
47 views
How to setIsAccessibilityElement with Monotouch?
There's a method setIsAccessibilityElement on UIView in Obj-C.
What is the equivalent in Monotouch?
I don't see any similar method/property except AccessibilityDecrement/AccessibilityIncrement, but ...
1
vote
2answers
112 views
ViewDidLoad not being called with my custom UIViewController
I have created a custom UIViewController class that creates a ScrollView at runtime that it loads into the view. See code here in the constructor of my custom UIViewController.
...
0
votes
1answer
140 views
Bind Objective-C code to C# (Monotouch). Multiple protocol inheritance
I am beginner with Objective-C. So I write my app using C# + Monotouch. Now I need to use third-party library TTTAttributedLabel written in ObjC. It is neccessary to bind it's code to C#. There is ...
1
vote
1answer
212 views
MonoTouch Making a UIImage from a CIImage causes an invalid argument / bad selector
I am trying to create a blured background when I show a popover I almost got it to work.
I found some Objective C which I translated into C#.
the problem is in this line
UIImage finalImage = new ...
5
votes
2answers
195 views
Xcode: how to build a static library project correctly?
This question will be easy for Xcode pros but for a MonoTouch developer it seems to be impossible to resolve. :-)
I'm using Xcode 4.5 and I want to target iOS 5.1 and above and iOS Simulator 5.1 and ...
3
votes
2answers
146 views
Monotouch binding ObjC library
I have an error while building fat binary:
ld: symbol(s) not found for architecture i386 (or arm7 for device)
collect2: ld returned 1 exit status
error MT5202: Native linking failed. Please review ...
1
vote
1answer
88 views
MonoTouch and Objc @Synchronized and makeObjectsPerformSelector
Im just porting some Objective-C code to MonoTouch but I got stuck here
UIColor *color = ARandomColor(); // ARandomColor Returns a Random UIColor ;)
@synchronized(self) {
[_annotationDict ...
1
vote
1answer
142 views
MonoTouch - how to override static UIView.layerClass
I'm trying to port AUISelectiveBordersView to MonoTouch.
It's basically a subclass of CALayer and integration in UIView via Categories.
"Translation" of AUISelectiveBordersLayer is easy, but ...
2
votes
2answers
169 views
Get reference to UINavigationController
I have a rootcontroller pushed on a UINavigationController.
Inside that rootcontroller class, I can access the UINavigationController with this.NavigationController
However, this rootcontroller has a ...
2
votes
1answer
136 views
How to bind these in MonoTouch?
How does the ObjectiveC code below translate into MonoTouch?
@interface PSPDFBookmarkViewController : UITableViewController <PSPDFStyleable>
- (instancetype)initWithDocument:(PSPDFDocument ...

