Questions tagged [nimbus-ios]

Nimbus is an iOS framework whose feature set grows only as fast as its documentation.

Nimbus is an iOS framework started by jverkoey as a solution to the Three20 framework's problems. See http://latest.docs.nimbuskit.info/index.html for details.

28 questions
4
votes
2 answers

NIAttributedLabel settextcolor not working

I am using NIAttributedLabel for displaying links on text. NIAttributedLabel *label; label = [[NIAttributedLabel alloc] initWithFrame:rect]; label.delegate = self; label.font = [UIFont…
Nitish
  • 13,845
  • 28
  • 135
  • 263
2
votes
1 answer

Nimbus NIPagingScrollView and Re-Layouting on Rotation

I'm using an NIPagingScrollView to display several pages on the iPhone. Everytime I flick to a page, the next page is also pre-loaded, which is fine. When I rotate the iPhone from Portrait to Landscape mode, I let layoutSubviews do the re-layouting…
fabb
  • 11,660
  • 13
  • 67
  • 111
2
votes
2 answers

UICollectionView with NINetworkImageViews repeats images

I'm using NINetworkImageView from Nimbuskit. I have a simple UICollectionView showing a grid of images (NINetworkImageViews). Normally it works like a charm, but in certain situations some of the NINetworkImageViews show a wrong image. I think it…
Carlos
  • 1,121
  • 12
  • 26
2
votes
1 answer

Nimbus NIToolbarPhotoViewController Image Crisping Effect

I'm using Nimbus to display a photo album with scrubber and zoomable image view. I use network images, and display a thumbnail until the final image is loaded. NIPhotoAlbumScrollView provides the method didLoadPhoto:atIndex:photoSize: to accomplish…
fabb
  • 11,660
  • 13
  • 67
  • 111
2
votes
2 answers

setting up attributes for links in NIAttributedLabel

I have done the following to have different color for links in my NIAttributedLabel: NSMutableDictionary *attributes = [NSMutableDictionary dictionary]; [attributes setValue:[UIColor colorWithRed:86.0/255.0 green:134.0/255.0 blue:172.0/255.0…
adit
  • 32,574
  • 72
  • 229
  • 373
1
vote
1 answer

Make 3 views visible with a NIPagingScrollView?

I am playing around with NIPagingScrollView and I am wondering a couple of things: Is it mandatory to return a view that has a width of 320px in pagingScrollView:pageViewForIndex:? If not, is there a way to automatically center the view in a…
MartinMoizard
  • 6,600
  • 12
  • 45
  • 75
1
vote
1 answer

NILauncherView Background Colour

I'm trying to set the background image of a NILauncherViewController included with iOS NimbubKit (update of the three20 kit). I've tried self.launcherView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"Background.png"]]; And…
Matt Rees
  • 884
  • 8
  • 14
1
vote
1 answer

what is the default caching behavior of NINetworkImageView in Nimbus for iOS

I was looking at the NINetworkImageView in the Nimbus project and was curious about that the default caching settings are. Once I call setPathToNetworkImage and loads an image, does that go in the global cache? Is it smart enough to realize it's…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
1
vote
1 answer

JPanel gets paintComponent gets called when child is entered

Some previous entries here address paintComponent() being called repeatedly, but the answers hinged on paintComponent itself calling repaint(). Using Nimbus L&F, if I subclass JPanel and add a JButton or JTextField, then my JPanel's…
FredK
  • 4,094
  • 1
  • 9
  • 11
1
vote
1 answer

Error for NIMutableTableViewModel `AnyClass does not conform to NITableViewModelDelegate`

In ObjC the code would be like self.tableModel = [[NIMutableTableViewModel alloc] initWithDelegate:(id)[NICellFactory class]]; In Swift self.tableModel = NIMutableTableViewModel(delegate:NICellFactory.classForCoder()) In Swift, It gives me error…
aelam
  • 2,796
  • 2
  • 27
  • 32
1
vote
0 answers

Optimizing memory for Nimbus network album

I have an application which uses a view controller which extends NetworkPhotoAlbumViewController, which in turn extends NIToolbarPhotoViewController Basically it implements all the NI protocols, such as NIPhotoAlbumScrollViewDataSource, …
andrei
  • 95
  • 1
  • 9
1
vote
1 answer

For NimbusKit NIToolbarPhotoViewController is there a way to set zoom scale

I'm using NIToolbarPhotoViewController by subclassing it. So far everything is working, but i can not change max zoom scale like you can with scroll views. I'm set photoAlbumView.zoomingAboveOriginalSizeIsEnabled = YES and…
Charlie Wu
  • 7,657
  • 5
  • 33
  • 40
1
vote
2 answers

loadView() no called

I have a UIViewController calling another view Controller with a defined loadView method. I’ve been trying many options without success to solve the problem of the loadView method not called. Any help is appreciated. Thanks. MArcos Caller…
vilelam
  • 804
  • 1
  • 11
  • 19
1
vote
1 answer

NIToolbarPhotoViewController with photos in app bundle

Originally posted at https://groups.google.com/forum/#!msg/nimbusios/nGePpdl12N4/Etnyp1cUOhMJ Are there any examples available using NIToolbarPhotoViewController with non-network images? I have the images in my application bundle that I would…
Asad Khan
  • 11,469
  • 13
  • 44
  • 59
1
vote
2 answers

Protocol on method declaration?

I'm starting to use the Nimbus framework and I just ran across this syntax for the first time. It looks like they are using some kind of protocol in the method declaration and then when declaring a variable. I've only seen protocols used in the…
Julian
  • 8,808
  • 8
  • 51
  • 90
1
2