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 ...
0
votes
0answers
42 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 ...
1
vote
2answers
110 views
Get iOS screen resolution without UI in MonoTouch
The question is: how can I get screen resolution in iOS MonoTouch (like UIScreen.MainScreen.Bounds) without a UI thread?
The property .MainScreen throws an exception
UIKit Consistency error: you are ...
0
votes
1answer
94 views
How to proxy UIKit delegates in MonoTouch?
I need to chain into a UIScrollView's delegate (it's not in my code and I have no control over it) and handle some of its methods, while passing all events to the previous delegate.
My naïve ...
0
votes
3answers
79 views
How do I clean up in Dispose if I can't call UIKit from another thread?
Most of my UIKit Dispose overrides do something with other views before they get destroyed:
protected override void Dispose (bool disposing)
{
if (ScrollView != null) {
...
2
votes
1answer
237 views
Auto Rotate quit working after upgrading to MonoTouch 6
I made a project with MonoTouch 5. After upgrading to MonoTouch 6 my UIViewControllers are not auto-rotating anymore. These are hosted inside a tabviewcontroller. I get this warning:
...
1
vote
1answer
37 views
A valid image not being returned from CoreImage in MonoTouch for a valid Asset
I am trying to get an image using this.
img = new UIImage(new MonoTouch.CoreImage.CIImage(validAssetObject),1.0f, UIImageOrientation.Up);
A CIImage is returned from the CIImage call. The new ...
29
votes
1answer
486 views
Extended UIButton border is not initially drawn
I am trying to create a custom UIButton which extends from UIButtonType.RoundedRect.
My added functionality is working, but there is an issue with the initial rounded border state of my button. The ...
3
votes
1answer
537 views
How to present a modal view controller with custom size in center?
I want to present a custom-sized modal view controller with animation from the bottom. I can achieve this animation with ModalPresentationStyle to FormSheet, but it forces me to use the default size ...
1
vote
1answer
95 views
Monotouch button mouse over
I'm new to MonoTouch and need some pointers on how to listen for a simple MouseOver event for a button. The goal is to have a grid of buttons and track the movement while passing over these buttons. ...
2
votes
1answer
145 views
I subclassed UIButton in MonoTouch but underlying ObjC class is still UIButton
I have BackButton that inherits UIButton.
It doesn't have a xib, is pretty simple and contains some layout logic which I omit.
Here is how I declared it:
[Register("BackButton")]
public class ...
2
votes
1answer
291 views
Monotouch SplitView changing the details view
please forgive the newness level I'll be exhibiting.
I created a new iPad Master/Detail (UISplitViewController) app in Monotouch.
The master controller on the left is a UITableViewController. The ...
4
votes
2answers
450 views
How to pass arguments to NSAction?
Well, everyone knows that in ObjC we have
+ (void)animateWithDuration:(NSTimeInterval)duration delay:(NSTimeInterval)delay options:(UIViewAnimationOptions)options animations:(void ...
0
votes
2answers
246 views
Monotouch, UIPopover and getting the event
I'm new to Monotouch but I have done some Objective C in my distant past. I'm trying to work out how I would do the following:
I have a ViewController with a Naviagtion Bar and button.
When I click ...
0
votes
2answers
669 views
MonoTouch: how to use UITableViewController as data source for UITableView?
I'm using storyboards and table views with static content. Internally it seems as if the UITableViewController implicitly becomes the source of the UITableView.
If I now want to take influence on the ...
2
votes
2answers
1k views
Storyboards: How to add outlets to a prototype UITableViewCell?
I have added prototype cell in one of the controllers that is part of the storyboard I'm designing. It has various labels, buttons, bells and whistles.
But how do I know create outlets to that cell's ...
1
vote
1answer
1k views
UIWindow makeKeyWindow: versus makeKeyAndVisible:
My app is using a 2nd UIWindow to show a special screen if iOS wants to take a screenshot of the app.
By accident I used [UIWindow makeKeyWindow:] on my main window if I wanted to remove the 2nd ...
1
vote
1answer
253 views
UINavigationController in xib not displaying
I am trying to present a UInavigationController through an XIB by using PresentModalViewController. The Structure of my XIB is as follows:
UINavigationController
-UIView
First Responder is wired ...
2
votes
1answer
238 views
Am I supposed do dispose the Image property of a UIImageView to help Garbage Collector in Monotouch?
On my quest to reduce memory usage, another question.
I see that UIImage and CGImage might be candidates for high memory usage in my app.
Wherever I use a UIImage, I try to wrap it in a using block to ...
2
votes
1answer
542 views
How to load a UIImage from file without caching in Monotouch?
If I look at the discussion here:
http://monotouch.2284126.n4.nabble.com/UIImageView-td4303177.html
Both, UIImage.FromFile() and UIImage.FromFileUncached() map to imageWithContentsOfFile: and are not ...
3
votes
2answers
762 views
3
votes
1answer
464 views
iOS5: Has somebody managed to fix UIAlertView with three buttons and textfield (UIAlertViewStylePlainTextInput)?
Apple really screwed this one up. I want to use a UIAlertView with the new UIAlertViewStylePlainTextInput style and have three buttons in it. The result looks as follows:
Has somebody managed to ...
2
votes
1answer
460 views
How to change the size of the text of UIbutton in monotouch?
I tried the code
UIbutton *bt = new UIbutton;
bt.Font = UIFont.SystemFontSize(35);
But I keep getting a compilation error "Font size is inaccessible due to protection level."
Any workaround?
2
votes
1answer
161 views
How is the calender on the iPad implemented? How to replicate look of it?
I will have to implement a calendar view/controller that looks pretty much like the one on iPad. Only differences are the list view and I will not have a yearly and daily view.
Also there is no ...
2
votes
1answer
259 views
MonoTouch.Dialog: Upside down text in Section Header View
I am using MonoTouch.Dialog and creating a custom Section HeaderView. The Text renders upside down. What am I missing?
public class SectionHeader: UIView
{
string title;
public ...
0
votes
1answer
550 views
Subclass of UIView with CAShapeLayer as mask does not animate correctly
I have added round corners to my subclassed UIView by adding a layer mask. The following is Montouch code, but should be easy enough to get the meaning also in ObjC:
// Add a layer that holds the ...
0
votes
1answer
79 views
Why does Montouch not keep a managed reference from the UIView to its UIViewController?
According to Apple's documentation, the nextRepsonder property of UIView returns the connected UIViewController:
...
0
votes
1answer
126 views
Monotouch: Create image reflection?
I would like to make a reflection to an image - like this:
Is that possible in Monotouch?
Thanks!
Mojo
0
votes
1answer
370 views
Fading UILabel out, change text, fade back in: only fading in is animated
Simple task: I want to fade a UILabel out (alpha = 0.0), change the text, fade it back in (alpha = 1.0f) and all this animated. I figured out that fading out is not animated and I did a small test ...
2
votes
2answers
539 views
MonoTouch UITableViewController and TableFooterView
I'm trying to develop a small iPhone application using MonoDevelop (v2.8) and MonoTouch (v4.2.2).
My home screen is represented by a UITableViewController which use a UITableView for presentation. I ...
1
vote
1answer
164 views
CA overlay on UISegmentedControl is overwritten in iOS5
I have the following code, which in iOS 4 produces the look of a "disabled" UISegmentedControl. As the attentive reader will notice, I am developing in MonoTouch, thus the c# syntax.
private void ...
0
votes
1answer
80 views
Imitate UINavigationController's animations
I'm looking for a way to remove an existing UIViewController and add a new one.
I would like to animate that the same way as UINavigationController does it.
Why do I not want to use ...
0
votes
2answers
397 views
How to get a UITableView with “Select All” and “Deselect All” buttons
I want to tableview accessory button like selectall or deselectall.
cell.Accessory = UITableViewCellAccessory.None;
I want to a button example :"select all"
When user touch this button everycell's ...
0
votes
2answers
298 views
What is UIRectFill() in Monotouch?
In a couple of ObjC projects in the overloaded drawRect: methods I have seen UIRectFill() being used. What is it doing and what is the equivalent of it in Monotouch?
For instance here, where is it ...
0
votes
1answer
274 views
Prevent UINavigationController's navigation bar to animate?
My UINavigationController's navigation bar is kind of static. This means, there is no back button, because going back in the stack is done via the first entry of the UITableView the controller holds. ...
3
votes
1answer
407 views
How to subclass UIApplication in Monotouch?
In order to be able to override UIApplication.SendEvent() I want to subclass UIApplication:
public class UIApplicationMain : UIApplication
{
public UIApplicationMain () : base()
{
}
...
0
votes
1answer
209 views
Prevent UIScrollView from cancelling touchesMoved: of subview?
I have a UIScrollView. On top of it I allow the user to add a DraggableView (a subclass of UIImageView) by applying a long press gesture to the UIScrollView.
The DraggableView overrides touchesMoved: ...
1
vote
1answer
383 views
Why are my UIScrollView's bounds changed when rotating the device?
I'm adding my view controller's view to the main window. My view controller's view is a UIScrollView.
The view's bounds are set to 500x500 and the view really is shown with the correct size.
However, ...
1
vote
1answer
736 views
Monotouch: UILabel disappears after t seconds, how to
How is it possible to hide a UILabel after t seconds?
Could I use a background thread to do this?
Thank you in advance. Regards.
EDIT
For those interested in, following Luke advice:
var timer = ...
0
votes
1answer
418 views
Dismiss a UIPopoverController
Is there a right mechanism to dismiss a UIPopoverController from the controller that I've passed in the ctor?
_popover = new UIPopoverController(myController);
From myController instance, I would ...
4
votes
2answers
923 views
Create custom UITextField and override methods with MonoTouch
I've created a UITextField with a background image like this:
_tf = new CustomTextField(new RectangleF(0,0 200, 200));
_tf.BorderStyle = UITextBorderStyle.None;
_tf.Background = ...
6
votes
3answers
480 views
Creating iOS UI components from NUnit test code
I'm trying to write a unit test for some code that programmatically creates UIButtons, but when I call this code from the test, I get a NullReferenceException. Stepping through in the debugger, it ...
0
votes
2answers
2k views
Extend UIButton in monotouch
i'm tring to extend UIButton class to add my id property.
How i can do this?
Problem is to create a button you use
var button = UIButton.FromType(UIButtonType.RoundRect);
so, if i've
public ...
2
votes
1answer
1k views
Retrieving a pixel alpha value for a UIImage (MonoTouch)
This question is a duplicate of 1042830, but MonoTouch-specific. Is there a way that's safer than allocating an IntPtr, drawing into it using CGBitmapContext and then reading bytes at the appropriate ...
5
votes
3answers
4k views
How can I animate a UIButton Alpha property with MonoTouch
I have a simple UIButton with an Alpha property that I would like to animate from 1.0f to 0.0f, and then back to 1.0f. This is basically responding to TouchDown.
Also, is there anything special I ...